|
|
|
ติดปัญหา การแบ่งหน้าครับ ไปข้างหน้าไม่ได้ ถอยหลังไม่ได้ครับ ทำไงดีครับ |
|
|
|
|
|
|
|
ลองดูโค๊ตตามนี้ นะครับ เปลี่ยนแปลงดูนะคับ
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>LearnSabay.com</title>
<style>
* { font-family:arial; font-size:8pt;}
table, td, th { border: solid 1px silver; color:#666; padding:3px 5px 3px 5px}
th { background-color:#333; color:#fff; font-size:0.85em }
a { color:gray; }
.filtering { background-color:light-gray}
#jqtf_filters {
list-style:none;
}
#jqtf_filters li {
display:inline-block;
position:relative;
float:left;
margin-bottom:20px
}
</style>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","") or die("ติดต่อ Database Server ไม่ได้");
$objDB = mysql_select_db("pundata");
$strSQL = "SELECT * FROM camera ";
$objQuery = mysql_query($strSQL) or die ("ไม่สามารถอ่านข้อมูลได้ [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 10; // 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;
}
$strSQL .=" order by ID_Camera ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
<table width="500" border="1" cellpadding="0" cellspacing="0">
<tr>
<th width="91"> <div align="center">ID_Camera </div></th>
<th width="98"> <div align="center">PartCode </div></th>
<th width="198"> <div align="center">Brand </div></th>
<th width="97"> <div align="center">Group </div></th>
<th width="59"> <div align="center">Categories </div></th>
<th width="71"> <div align="center">Sub </div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?=$objResult["ID_Camera"];?></div></td>
<td><?=$objResult["PartCode"];?></td>
<td><?=$objResult["Brand"];?></td>
<td><div align="center"><?=$objResult["Group"];?></div></td>
<td align="right"><?=$objResult["Categories"];?></td>
<td align="right"><?=$objResult["Sub"];?></td>
</tr>
<?
}
?>
</table>
<br>
Total <?= $Num_Rows;?> Record : <?=$Num_Pages;?> Page :
<?
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($objConnect);
?>
</body>
</html>
|
|
|
|
|
Date :
2010-10-11 10:04:35 |
By :
thanathorn30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเปลี่ยนแล้วครับ แต่ว่ากด next แล้วมันไม่มีข้อมูลโชว์ให้ครับ
Code (PHP)
$objConnect = mysql_connect("localhost","mysql","") or die("Error Connect to Database");
$objDB = mysql_select_db("room");
$strSQL85 = "SELECT * FROM room ";
$objQuery85 = mysql_query($strSQL85) or die ("Error Query [".$strSQL85."]");
$Num_Rows = mysql_num_rows($objQuery85);
$Per_Page = 10; // 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;
}
$strSQL85 .="where today > '$mntime' and (set1+$wamount) <=40 order by today ASC LIMIT $Page_Start , $Per_Page";
$objQuery85 = mysql_query($strSQL85);
echo"
<table border='1' align='center'>
<tr bgcolor='#D3D3D3'>
<td align='center' bgcolor='#FFCC66'>ลำดับที่</td>
<td align='center' bgcolor='#FFCC66'>วันที่ ที่สามารถจองได้ $wamount ห้อง</td>
</tr>";
$count5=0;
while($objResult85 = mysql_fetch_array($objQuery85)){
$count5++;
$ttime=$objResult85["today"];
list($mtyear, $mtmonth, $mtday) = explode("-", $ttime);
echo"
<tr>
<td align='center' bgcolor='#FFCC99'>$count5</td>
<td align='center' bgcolor='#0000FF'>"; ?><a href="room_report5.php?CusID=<?=$objResult85["id_room"]; ?>"><?="$mtday-$mtmonth-$mtyear"; ?></a></td>
<? echo"
</tr>";
}
?>
</table>
<br>
Total <?= $Num_Rows;?> Record : <?=$Num_Pages;?> Page :
<?
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($objConnect);
}
|
|
|
|
|
Date :
2010-10-11 23:19:05 |
By :
ฝึกหัด |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอง ปรับส่วนของผมไปใช้ดูนะ ครับ พอดี ยังมือใหม่ เช่นกันครับ
** ยังไง ก็ สร้างฐานข้อมูลมา 1 ฐานข้อมูล แล้วลอง กำหนดค่า ใน ฟิลด์ แล้ว รันผล ดู นะครบ **
ผมก็หา ข้อมูลจาก thaicreate and พี่ ๆ ใจดี ในนี้ละครับ สู้ๆ ครับๆ
|
|
|
|
|
Date :
2010-10-12 00:39:08 |
By :
thanathorn30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ ขอบคุณ mr.win และ M@xNuM มากๆครับ
|
|
|
|
|
Date :
2010-10-12 22:58:34 |
By :
ฝึกหัด |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|