|
|
|
php [code แบ่งหน้า]แสดงได้หน้า 1 ได้หน้าเดียว เลือกหน้าสอง Warning |
|
|
|
|
|
|
|
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\test\product_list.php on line 64
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\test\product_list.php on line 75
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\test\product_list.php on line 109
Code (PHP)
<html>
<center>
<body>
<!-- Header -->
<table width="70%" border="1">
<tr>
<td colspan="6">
<? include("header.php"); ?>
</td>
</tr>
<!-- menu1 -->
<tr>
<td align = "center"> <a href="index.php">หน้าแรก[</a></td>
<td align = "center">สินค้าแนะนำ</td>
<td align = "center">วิธีการสั่งซื้อสินค้า</td>
<td align = "center">แจ้งการโอนงาน</td>
<td align = "center">ติดต่อเรา</td>
</tr>
<!-- menu2 -->
<tr>
<width="15%">
<td valign="top">
<br><div align = "center">[ <a href="basket.php"> ตะกร้าสินค้า</a> ]</br> <div align = "center"><h2>รายการสินค้า</h2>
<?
include "connect.php";
include "type_menu.php";
?>
</td>
<td colspan ="4">
<table border="1">
<tr>
<h3 align = "center">ยินดีต้อนรับเข้าสู่เว็บร้านค้าเจปัง online</h3>
<?php
// สร้างฟังก์ชั่น สำหรับแสดงการแบ่งหน้า
function page_navigator($before_p,$plus_p,$total,$total_p){
echo $before_p." to ".$plus_p." of ".$total." | Go to Page ";
for($i=0;$i<$total_p;$i++){
echo "<a href='?s_page=$i'>".intval($i+1)."</a> ";
}
}
?>
</head>
<body>
<?php
// ทำการเชิ่อมต่อฐานข้อมูล
include "connect.php";
?>
<?php
$id = $_GET["id"];
$q="select * from product where type_id = $id" ; // แก้ไขขื่อตารางตามต้องการ
$qr=mysql_query($q);
$total=mysql_num_rows($qr);
$e_page=6; // กำหนด จำนวนรายการที่แสดงในแต่ละหน้า
if(!isset($s_page)){
$s_page=0;
}else{
$chk_page=$s_page;
$s_page=$s_page*$e_page;
}
$q.=" limit $s_page,$e_page";
$qr=mysql_query($q);
if(mysql_num_rows($qr)>=1){
$plus_p=($chk_page*$e_page)+mysql_num_rows($qr);
}else{
$plus_p=($chk_page*$e_page);
}
$total_p=ceil($total/$e_page);
$before_p=($chk_page*$e_page)+1;
?>
<table width="100%" border="1" cellspacing="1" cellpadding="1">
<tr>
<td colspan="2" bgcolor="#CCCCCC">รายการสินค้า</td>
</tr>
<tr>
<td colspan="2">
<fieldset>
<?php
// เรียกใช้งานฟังก์ชั่น สำหรับแสดงการแบ่งหน้า
page_navigator($before_p,$plus_p,$total,$total_p);
?>
</fieldset>
</td>
</tr>
<?php
$cols = 2;
$c = $cols;
$id = $_GET["id"];
$q="select * from product where type_id = $id limit $s_page,$e_page"; // แก้ไขขื่อตารางตามต้องการ
$qr=mysql_query($q);
?>
<tr>
<?
while($rs=mysql_fetch_array($qr)){
$c --;
?>
<td>
<br><img
src ="images/<?=$rs[product_image]?>" width="100"><br>
<b> รหัสสินค้า : </b> <?=$rs[product_id]?> <br>
<b> ชื่อสินค้า : </b> <?=$rs[product_name]?><br>
<b> ราคา : </b> <?=$rs[product_price]?> บาท<br>
<br>
[ <a href=product_detail.php?id=<?=$rs[product_id]?>>แสดงรายละเอียด
</a>]
[ <a href=basket_add.php?id=<?=$rs[product_id]?>>หยิบใส่ตะกร้า</a> ]
</td>
<?
if($c == 0) {
$c = $cols;
?>
</tr>
<?php }} ?>
<tr>
<td colspan="2">
<fieldset>
<?php
// เรียกใช้งานฟังก์ชั่น สำหรับแสดงการแบ่งหน้า
page_navigator($before_p,$plus_p,$total,$total_p);
?>
</fieldset>
</td>
</tr>
</table>
</body>
</html>
<!-- Footer -->
<tr>
<td colspan="5">ท้าย</td>
</tr>
</table>
</body>
</center>
</html>
Tag : PHP
|
|
|
|
|
|
Date :
2014-06-03 19:02:35 |
By :
sakdichai |
View :
1022 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใครก็ได้ขี่ม้าขาวมาช่วยผมหน่อยแก้เองไม่ได้แล้วครับ
|
|
|
|
|
Date :
2014-06-10 20:24:05 |
By :
sakdichai |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|