|
|
|
PHP กับ MySQL เพื่อดึงข้อมูลจาก Table มาแสดงและมีการแบ่งการแสดงผลเป็นหน้า ค่ะ |
|
|
|
|
|
|
|
จากบทความนี้ค่ะ
https://www.thaicreate.com/php/php-mysql-list-record-paging.html
PHP กับ MySQL เพื่อดึงข้อมูลจาก Table มาแสดงและมีการแบ่งการแสดงผลเป็นหน้า แต่ยังติด error อยู่ค่ะ 2 จุด
Error
Warning: mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given in D:\XAMPP\htdocs\all.php on line 17
Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in D:\XAMPP\htdocs\all.php on line 58
ลองแก้ดูแล้วมันก็ยังติดเหมือนเดิม รบกวนดูด้วยค่ะ
Code (PHP)
<html>
<head>
<title>All </title>
</head>
<body>
<?php
$dbhost = "localhost";
$dbusername = "root";
$dbpassword = "";
$dbname = "drill";
$mysqli = new mysqli ($dbhost, $dbusername, $dbpassword, $dbname);
$strSQL = "SELECT * FROM data ";
$objQuery = mysqli_query($mysqli,$strSQL);
$Num_Rows = mysqli_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;
}
$strSQL .=" order by no ASC LIMIT $Page_Start , $Per_Page";// no คือ autoincrement
$objQuery = mysqli_query($mysqli,$strSQL);
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">no</div></th>
<th width="98"> <div align="center">campaign </div></th>
<th width="198"> <div align="center">url</div></th>
</tr>
<?php
while($objResult = mysqli_fetch_array($objQuery,MYSQLI_ASSOC))
{
?>
<tr>
<td><div align="center"><?php echo $objResult["no"];?></div></td>
<td><div align="center"><?php echo $objResult["camp"];?></div></td>
<td><div align="center"><?php echo $objResult["url"];?></div></td>
</tr>
<?php
}
?>
</table>
<br>
Total <?php echo $Num_Rows;?> Record : <?php echo $Num_Pages;?> Page :
<?php
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> ";
}
mysqli_close($mysqli);
?>
</body>
</html>
Tag : PHP, HTML/CSS, JavaScript
|
ประวัติการแก้ไข 2016-03-01 11:45:03
|
|
|
|
|
Date :
2016-03-01 11:43:01 |
By :
sammam |
View :
29239 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วค่ะ เป็นเพราะชื่อ ตารางไม่เหมือนกัน 555 โง่เองค่ะ 555
|
|
|
|
|
Date :
2016-03-01 13:07:39 |
By :
sammam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM customer ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
|
|
|
|
|
Date :
2016-03-01 13:35:40 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่ค่ะ พอกดหน้า 2 หรือว่า next มันไม่ไป เนื่องจากอะไรค่ะ
|
|
|
|
|
Date :
2016-03-02 14:03:15 |
By :
sammam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2016-03-03 09:02:35 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|