<? include("../connection/connection.php"); // Prepare Variable $num_col = 3; // Action $sql = "SELECT * FROM product ORDER BY id"; $result = mysql_query($sql) or die(mysql_error()); ?> <!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>ระบบตะกร้าสินค้า - หน้าร้าน</title> </head> <body> <div align="center"><h2>หน้าร้าน</h2></div> <!-- Product --> <table width="80%" border="1" align="center" cellpadding="5" cellspacing="1"> <? for ($i = 0; $row = mysql_fetch_array($result); $i++) { if ($i%$num_col == 0) { ?><tr><? } ?> <td align="center"> <a href="show_product.php?id=<?=$row["id"]?>"> <img src="images/<?=$row["id"]?>.jpg" border="0" /> </a><br /> <?=$row["p_name"]?><br /> <?=number_format($row["p_price"])?> บาท </td> <? if ($i%$num_col == $num_col-1) { ?></tr><? } } // Add <td></td> if ($i > $num_col) { for ($j = $i; $j%$num_col != 0; $j++) { ?><td align="center">จะมีมาในไม่ช้า</td><? } } // Add </tr> if ($i%$num_col != 0) { ?></tr><? } ?> </table> </body> </html>
<img src="images/<?=$row["id"]?>.jpg" border="0" />
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง