รบกวนช่วยดูหน่อยครับ แบ่งหน้าแล้วข้อมูลไม่ออก งงมากเลยครับ
รบกวนช่วยดูหน่อยครับ แบ่งหน้าแล้วข้อมูลไม่ออก งงมากเลยครับ
โค้ดทั้งหมด
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("test");
mysql_query("SET NAMES UTF8");
<?
$strSQL = "select l.id,l.name,l.uname,l.strdate,l.strtime,l.enddate,l.endtime,r.name as rname,l.mstatus from meeting_list l ";
$strSQL .= " left outer join meeting_room r on r.id = l.room where r.id = l.room ORDER BY l.id DESC";
$objQuery = mysql_query($strSQL);
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 2; // Per Page
$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;
}
$offset=($Page-1)*$Per_Page;
$count=(1+$offset)-1;
$strSQL.="LIMIT $Page_Start,$Per_Page";
$objQuery = mysql_query($strSQL);
?>
<br><img src="img/icon/accept_16.png"> อนุมัติแล้ว | <img src="img/icon/wait_16.png"> รอการอนุมัติ | <img src="img/icon/block_16.png"> ยกเลิกการจอง
<table class="data1">
<tr class="data1">
<th class="data1" width="4%">สถานะ</th>
<th class="data1" width="15%">ห้องประชุม</th>
<th class="data1" width="14%">ผู้จองห้อง</th>
<th class="data1" width="16%">วันเวลาที่เริ่ม</th>
<th class="data1" width="16%">วันเวลาสิ้นสุด</th>
<th class="data1" width="30%">หัวข้อ</th>
</tr>
<? //ส่วนเริ่มต้นของการประมวลผลสลับสีตาราง
$i=0;
while($objResult = mysql_fetch_array($objQuery))
{
$i++;
$count++;
if($i%2==0)
{
$bg = "#CCFF66";
}
else
{
$bg = "#FDF5E6";
}
?>
<tr class="data1" bgcolor="<?=$bg;?>">
<td class="data1" width="4%" align="center">
<? if($objResult["mstatus"]=='N')
{
echo "<img src='img/icon/wait.png'>";
}
else if($objResult["mstatus"]=='Y')
{
echo "<img src='img/icon/accept.png'>";
}
else if($objResult["mstatus"]=='S')
{
echo "<img src='img/icon/block_32.png'>";
}
?></td>
<td class="data1" width="15%"><?=$objResult["rname"];?></td>
<td class="data1" width="14%"><?=$objResult["uname"];?></td>
<td class="data1" width="16%"><?=Datethai($objResult["strdate"]);?> <?=$objResult["strtime"];?></td>
<td class="data1" width="16%"><?=Datethai($objResult["enddate"]);?> <?=$objResult["endtime"];?></td>
<td class="data1" width="30%"><?=$objResult["name"];?></td>
</tr>
<?
}
?>
</table>
<br>
ทั้งหมด <?= $Num_Rows;?> บรรทัด : <?=$Num_Pages;?> หน้า :
<?
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page'><< Back</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page'>Next>></a> ";
}
mysql_close();
?>
ขอบคุณล่วงหน้า สำหรับทุกๆคำตอบครับTag : PHP, MySQL
Date :
2014-07-21 09:50:48
By :
conline102
View :
782
Reply :
7
echo $strSQL; แล้วเอาคำสั่ง SQL ที่ได้ ไปรันใน phpMyAdmin ดูครับว่าผ่านไม๊
อีกอย่างครับ ขอแนะนำสคริปแบ่งหน้า ที่ใช้ง่าย ไม่ต้องมาเขียนโค้ดเยอะ --> การแสดงแบบแบ่งหน้าโดยใช้ kgPager Class (PHP & MySQL)
ประวัติการแก้ไข 2014-07-21 10:03:56
Date :
2014-07-21 09:59:43
By :
arm8957
ตอบความคิดเห็นที่ : 1 เขียนโดย : arm8957 เมื่อวันที่ 2014-07-21 09:59:43
รายละเอียดของการตอบ ::
ขึ้นแบบนี้ครับ
ผิดพลาด
คำค้น SQL: เอกสารอ้างอิง
SELECT l.id, l.name, l.uname, l.strdate, l.strtime, l.enddate, l.endtime, r.name AS rname, l.mstatus
FROM meeting_list l
LEFT OUTER JOIN meeting_room r ON r.id = l.room
WHERE r.id = l.room
ORDER BY l.id DESCLIMIT0, 2
LIMIT 0 , 30
MySQL แสดง: เอกสารอ้างอิง
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DESCLIMIT 0 , 2
LIMIT 0, 30' at line 1
ประวัติการแก้ไข 2014-07-21 10:21:32
Date :
2014-07-21 10:06:10
By :
conline102
ช่วยหน่อยนะครับ
งงมากๆเลย
ขอบคุณ คุณ คนธรรมดา ไม่พิเศษ นะครับ แต่ผมใช้ไม่เป็นครับ (มือใหม่ครับ)
Date :
2014-07-21 10:37:09
By :
conline102
นี่ไงครับปัญหา 'DESCLIMIT 0 , 2 LIMIT 0, 30' at line 1
อะลองดูครับ
Code (PHP)
<?PHP
$strSQL = "select l.id,l.name,l.uname,l.strdate,l.strtime,l.enddate,l.endtime,r.name as rname,l.mstatus from meeting_list l ";
$strSQL .= " left outer join meeting_room r on r.id = l.room where r.id = l.room ORDER BY l.id DESC ";
$objQuery = mysql_query($strSQL);
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 2; // Per Page
$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;
}
$offset=($Page-1)*$Per_Page;
$count=(1+$offset)-1;
$strSQL.=" LIMIT $Page_Start,$Per_Page";
$objQuery = mysql_query($strSQL);
?>
<br><img src="img/icon/accept_16.png"> อนุมัติแล้ว | <img src="img/icon/wait_16.png"> รอการอนุมัติ | <img src="img/icon/block_16.png"> ยกเลิกการจอง
<table class="data1">
<tr class="data1">
<th class="data1" width="4%">สถานะ</th>
<th class="data1" width="15%">ห้องประชุม</th>
<th class="data1" width="14%">ผู้จองห้อง</th>
<th class="data1" width="16%">วันเวลาที่เริ่ม</th>
<th class="data1" width="16%">วันเวลาสิ้นสุด</th>
<th class="data1" width="30%">หัวข้อ</th>
</tr>
<? //ส่วนเริ่มต้นของการประมวลผลสลับสีตาราง
$i=0;
while($objResult = mysql_fetch_array($objQuery))
{
$i++;
$count++;
if($i%2==0)
{
$bg = "#CCFF66";
}
else
{
$bg = "#FDF5E6";
}
?>
<tr class="data1" bgcolor="<?=$bg;?>">
<td class="data1" width="4%" align="center">
<? if($objResult["mstatus"]=='N')
{
echo "<img src='img/icon/wait.png'>";
}
else if($objResult["mstatus"]=='Y')
{
echo "<img src='img/icon/accept.png'>";
}
else if($objResult["mstatus"]=='S')
{
echo "<img src='img/icon/block_32.png'>";
}
?></td>
<td class="data1" width="15%"><?=$objResult["rname"];?></td>
<td class="data1" width="14%"><?=$objResult["uname"];?></td>
<td class="data1" width="16%"><?=Datethai($objResult["strdate"]);?> <?=$objResult["strtime"];?></td>
<td class="data1" width="16%"><?=Datethai($objResult["enddate"]);?> <?=$objResult["endtime"];?></td>
<td class="data1" width="30%"><?=$objResult["name"];?></td>
</tr>
<?
}
?>
</table>
<br>
ทั้งหมด <?= $Num_Rows;?> บรรทัด : <?=$Num_Pages;?> หน้า :
<?
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page'><< Back</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page'>Next>></a> ";
}
mysql_close();
?>
ปล. ที่แนะนำสคริปไปนั้น ลองศึกษาก่อนครับ มันมีตัวอย่างอยู่ แล้วชีวิตคุณจะง่ายขึ้นเยอะ
Date :
2014-07-21 10:43:41
By :
arm8957
โค้ดมันติดกันครับ ทำให้โครงสร้าง SQL ผิดเพี้ยน --> DESCLIMIT 0 , 2 ที่ถูก -->DESC LIMIT 0 , 2
คือการเขียนคำสั่ง SQL แบบต่อสตริงต้องเช็คดีๆ มีโอกาสผิดพลาดได้ง่าย ต้องเว้นวรรคให้มันด้วย ถ้าให้ดีก็เว้นวรรคมันทั้งห้า-หลังเลย แต่ก็ไม่แนะนำให้เขียนแบบนี้ มันดูยาก ยกเว้นจำเป็นจริง ก็ประมาณนี้
Code (PHP)
$sql = " SELECT * FROM table1 ";
$sql .= " WHERE id = '1' ";
$sql .= " LIMIT 1 ";
Date :
2014-07-21 11:08:53
By :
arm8957
Load balance : Server 04