|
|
|
ช่วยด้วยค้าบ แบ่งหน้าได้ แต่พอไปหน้าที่ 2 ข้อมูลหายครับ T^T Please.... |
|
|
|
|
|
|
|
ขอบคุณมากครับ
หน้าที่สองมันขึ้นแบบนี้ครับ
http://localhost/bsso/admin/admin_report_sell_preview.php?Page=2&ddlSelect=&txtKeyword=
ไม่ทราบว่าถูกรึปล่าว รบกวนด้วยครับ
|
ประวัติการแก้ไข 2013-09-23 11:05:08
|
|
|
|
Date :
2013-09-23 10:23:10 |
By :
gtcreate005 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอ....เหมือนรายละเอียดที่ผมตั้งกระทู้ หายไป...ยังไงไม่รู้ครับ
|
|
|
|
|
Date :
2013-09-23 11:02:02 |
By :
gtcreate005 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันเป็นแบบนี้ครับ
|
ประวัติการแก้ไข 2013-09-23 11:54:12
|
|
|
|
Date :
2013-09-23 11:52:43 |
By :
gtcreate005 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
search ส่ง post
navigation ส่ง get
ลองคิดดูครับว่าจะใช้วิธีไหนแก้
|
|
|
|
|
Date :
2013-09-23 14:01:28 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบพระคุณ PlaKriM เป็นอย่างสูงครับ
ผมลองเปลี่ยน search ส่ง get navigation ส่ง get
ก็เหมือนเดิมครับ แต่พอลอง
ใช้คำสั่งฐานข้อมูลอันแรก ใช้ได้ปกติครับ
$strSQL = "SELECT * FROM tbbill WHERE 1 AND bill_id LIKE 'B%' AND bill_date LIKE '2013-09-17'";
หรือคำสั่งนี้ ก็ใช้ได้ครับ
$strSQL = "SELECT * FROM tbbill WHERE 1 AND bill_id LIKE 'B%' AND bill_date BETWEEN '2013-09-14' AND '2013-09-17'";
แต่พอเปลี่ยนมาเป็นตัวนี้ ไม่แสดงผลเลยครับ ไม่รู้ว่าเป็นเพราะตัวนี้รึปล่าวครับ ผมไม่รู้จริงๆครับ
$strSQL = "SELECT * FROM tbbill WHERE 1 AND bill_id LIKE 'B%' AND bill_date BETWEEN '".$date1."' AND '".$date2."'";
จากภาพหน้าแรกปกติ พอคลิกจะดูหน้าที่ 2 เป็นแบบนี้เลยครับ รบกวนด้วยนะครับ
|
ประวัติการแก้ไข 2013-09-23 16:23:57
|
|
|
|
Date :
2013-09-23 16:20:33 |
By :
gtcreate005 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?PHP
error_reporting(0);
session_start();
include ('include/ConnectionDb.php');
include ('include/function.php');
function getthaidate($date1){
$_month_name = array("01"=>"มกราคม","02"=>"กุมภาพันธ์","03"=>"มีนาคม","04"=>"เมษายน","05"=>"พฤษภาคม","06"=>"มิถุนายน","07"=>"กรกฏาคม","08"=>"สิงหาคม","09"=>"กันยายน","10"=>"ตุลาคม","11"=>"พฤศจิกายน","12"=>"ธันวาคม");
$y=substr($date1,0,4);$mm=substr($date1,5,2);$dd=substr($date1,8,2);
$yy=$y+543;
$dateT=intval($dd)." ".$_month_name[$mm]." ".$yy;
return $dateT;
}
$date1 = $_POST['dc'];
$date2 = $_POST['dc2'];
?>
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<table width="599" cellpadding="0" cellspacing="0" border="0"><!-- table 1 -->
<tr>
<td high="15" colspan="3"> </td>
</tr>
<tr>
<td align="center" colspan="3">สรุปรายงานการขาย</td>
</tr>
<tr>
<td high="15" colspan="3"> </td>
</tr>
<tr>
<td align="center">วันที่ <?PHP echo getthaidate($date1); ?></td>
<td align="center">ถึง</td>
<td align="center">วันที่ <?PHP echo getthaidate($date2); ?></td>
</tr>
</table>
<form name="frmSearch" method="post" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<table width="599" border="1">
<tr>
<th>ค้นหาตาม
<select name="ddlSelect" id="ddlSelect">
<option>- Select -</option>
<option value="manage_id" <?if($_GET["ddlSelect"]=="manage_id"){echo"selected";}?>>รหัสการทำรายการ</option>
<option value="bill_id" <?if($_GET["ddlSelect"]=="bill_id"){echo"selected";}?>>หมายเลขใบเสร็จ</option>
<option value="product_id" <?if($_GET["ddlSelect"]=="product_id"){echo"selected";}?>>รหัสสินค้า</option>
</select>
คำค้นหา
<input name="txtKeyword" type="text" id="txtKeyword" value="<?=$_GET["txtKeyword"];?>">
<input type="submit" value="Search"></th>
</tr>
</table>
</form>
<?
//$strSQL = "SELECT * FROM tbbill WHERE 1 AND bill_id LIKE 'B%' AND bill_date BETWEEN '2013-09-14' AND '2013-09-17'";
$strSQL = "SELECT * FROM tbbill WHERE 1 AND bill_id LIKE 'B%' AND bill_date BETWEEN '".$date1."' AND '".$date2."'";
if($_GET["ddlSelect"] != "" and $_GET["txtKeyword"] != '')
{
$strSQL .= "AND (".$_GET["ddlSelect"]." LIKE '%".$_GET["txtKeyword"]."%' )";
}
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 10;
$Page = $_GET["Page"];
if(!$_GET["Page"])
{
$Page=1;
}
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
$Num_Pages =1;
}
else if(($Num_Rows % $Per_Page)==0)
{
$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
$Num_Pages =($Num_Rows/$Per_Page)+1;
$Num_Pages = (int)$Num_Pages;
}
$strSQL .=" order by manage_id ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
<table width="600" border="1">
<tr>
<th width="110"> <div align="center">รหัสการทำรายการ</div></th>
<th width="98"> <div align="center">หมายเลขใบเสร็จ</div></th>
<th width="20"> <div align="center">ลำดับ</div></th>
<th width="97"> <div align="center">รหัสสินค้า</div></th>
<th width="59"> <div align="center">จำนวน</div></th>
<th width="71"> <div align="center">รวม</div></th>
</tr>
<?
$total=0;
while($objResult = mysql_fetch_array($objQuery))
{
$sum = $objResult['bill_qty'];
$sum2 = $objResult['bill_total'];
$price += $sum2;
$total += $sum;
?>
<tr>
<td><div align="center"><?=$objResult["manage_id"];?></div></td>
<td><div align="center"><?=$objResult["bill_id"];?></div></td>
<td><div align="center"><?=$objResult["bill_list"];?></div></td>
<td><div align="center"><?=$objResult["product_id"];?></div></td>
<td align="center"><?=$objResult["bill_qty"];?></td>
<td align="center"><?=$objResult["bill_total"];?></td>
</tr>
<?
}
?>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td align="center"><?PHP echo $total; ?></td>
<td></td>
</tr>
</table>
<table width="600" border="1">
<tr>
<td height="25" align="right" valign="middle"><div style="padding-right: 20px;"><strong>จำนวนสินค้า :</strong>
<samp style="color:red; font-weight:bold;"><?=$total;?></samp> <strong>รายการ</strong> </div>
</td>
</tr>
<tr>
<td height="25" align="right" valign="middle"><div style="padding-right: 20px;"><strong>ราคารวม :</strong>
<samp style="color:red; font-weight:bold;"><?=$price;?></samp> <strong>บาท</strong> </div>
</td>
</tr>
</table>
<br>
Total <?= $Num_Rows;?> Record : <?=$Num_Pages;?> Page :
<?
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page&ddlSelect=$_GET[ddlSelect]&txtKeyword=$_GET[txtKeyword]'><< Back</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i&ddlSelect=$_GET[ddlSelect]&txtKeyword=$_GET[txtKeyword]'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page&ddlSelect=$_GET[ddlSelect]&txtKeyword=$_GET[txtKeyword]'>Next>></a> ";
}
?>
</body>
</html>
|
|
|
|
|
Date :
2013-09-23 21:55:01 |
By :
gtcreate005 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(isset($_GET['dt1']) and !empty(isset($_GET['dt1'])))
{
$dt1=$_GET['dt1'];
}
elseif(isset($_POST['dt1']) and !empty(isset($_POST['dt1'])))
{
$dt1=$_POST['dt1'];
}
else
{
$dt1="";
}
$sql = "xxx where 1=1";
if(!empty($dt1))
{
$sql .= " and date1 = " . $dt1;
}
ลองเอาไปปรับใช้ อย่าลืมป้องกัน sql injection ด้วยนะครับ
|
|
|
|
|
Date :
2013-09-24 00:22:17 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ
วันนี้จะลุยเต็มที่ครับ ไม่รู้ผลจะเป็นอย่างไร
เดี๋ยวกลับมารายงานความคืบหน้าครับ
|
|
|
|
|
Date :
2013-09-24 17:05:05 |
By :
gtcreate005 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ ขอบคุณทุกท่านมากเลยครับ
|
|
|
|
|
Date :
2013-09-24 17:59:17 |
By :
gtcreate005 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|