<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-874"><style type="text/css"> <!-- body,td,th { font-family: BrowalliaUPC; font-size: 18px; } --> </style></head> <? include("header.php"); $con = mysql_connect("localhost","root","1234"); $db = mysql_select_db("onlineshop",$con)or die ('ติดต่อฐานข้อมูลไม่ได้ '); mysql_query("SET NAMES tis620"); $sql = "SELECT * FROM product " ; $result = mysql_query($sql); $num = mysql_num_rows($result); $perPage = 4; $page = $_GET["page"]; if(!$_GET["page"]){ $page=1; } $prevPage = $page-1; $nextPage = $Page+1; $PageStart = (($perPage * $page) - $perPage); if($num <= $perPage ){ $numPage=1; }else if(($num% $perPage)==0){ $numPage =($num/$perPage); }else{ $numPage =($num/$perPage)+1; $numPage = (int)$numPage; } $sql .= "ORDER BY pid DESC LIMIT $PageStart,$perPage"; $result = mysql_query($sql); include("block.php"); echo "<table border =\"0\" cellspacing =\"1\" cellpadding =\"1\" align=\"right\" width=\"607\" height=\"716\">"; echo"</td><tr>"; $intRow = 0; while ($rows = mysql_fetch_array($result)){ $productID = $rows["pid"]; $productName = $rows["pname"]; $productDes = $rows["description"]; $productPrice = $rows["price"]; $productType = $rows["type"]; $productNum = $rows["num"]; $productImage = $rows["image"]; echo "<td >"; $intRow++; ?> <img src="pic/<?=$productImage ?>" width="180" height="160" > <? echo"<br> >รหัสสินค้า : ". $productID."<br> "; echo " ชื่อสินค้า : " .$productName."<br> "; echo "ราคา : ".$productPrice."<br> "; echo " <a href='minishow.php?productID=$productID'><img src=\"images/cart_01.gif\" width=\"90\" height=\"18\" border = 0 ></a> "; echo " <a href='cart3.php?action=add&productID=$productID'><img src=\"images/cart_02.gif\" width=\"90\" height=\"18\" border = 0 ></a>"; echo "<hr></td>"; if(($intRow)%3==0){ echo"</tr>"; } } ?> <br /> Total <?= $num; ?> Record : <?= $numPage; ?> Page : <? if($prevPage) { echo " <a href='$_SERVER[SCRIPT_NAME]?page=$prevPage'><< Back</a> "; } for($i=1; $i<=$numPage; $i++){ if($i != $page) { echo "[ <a href='$_SERVER[SCRIPT_NAME]?page=$i'>$i</a> ]"; } else { echo "<b> $i </b>"; } } if($page ==$nextPage) { echo " <a href ='$_SERVER[SCRIPT_NAME]?page=$nextPage'>Next>></a> "; } echo "</tr></table></table></table>"; mysql_close(); include("footer.php"); ?> </html>
$sql .= "ORDER BY pid DESC LIMIT $PageStart,$perPage"; echo $sql;
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง