while($objResult = mysql_fetch_array($result)) { $PID = $objResult['Product_Id']; $Pname = $objResult['Product_Name']; $Pdesc1 = $objResult['Product_Des']; $Pdesc = substr($Pdesc1,0,80). "..." ; $Pprice = $objResult['Product_Prices']; $Ppic = $objResult['Product_Pict']; echo "<tr> <td width=220><div id=product> <img align=center width=115 src='$Ppic?Product_Id=$PID'> </div>"; echo "<div id=productName> <br><b> <a href='product_detail.php?PID=$PID'> $Pname </a> </b></div>"; // จะลิ้งไปหน้า product_detail.php โดยใช้ไอดีเป็นตัวส่งค่าอ่ะค่ะ echo "<div id=product> <br> $Pdesc </div>"; echo "<div id=product> <br> $Pprice </div>"; echo "<div id=product> <br> <input type=button value='add to cart' > </div>"; echo "</td>";
<!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>Untitled Document</title> <link rel="stylesheet" href="mystyle.css" /> <script type="text/javascript" src="myjs.js"> </script> </head> <body> <div> <? include('menubar.php'); ?> </div> <? include('onlineshop.inc.php');?> <table width="1000" align="center" border="0"> <tr> <td align="left"> <? include('sidemenu.php');?> <table id="cart" bgcolor="#FF0066"> <tr> <td> <script> readCart(); </script> </td></tr> </table> </td> <td> <table width="100%" border="0"> <tr> <td width="30%"> </td> <td width="50%"> </td> <td> </td> </tr> <?php $PID = $_GET['PID']; $sql = "SELECT * FROM product WHERE Product_Id = $PID;"; // คือจะโชว์โปรดักโดยใช้ไอดีที่ส่งมาจากหน้าที่แล้วเปนเงื่อนไขค่ะ $result = mysql_query($sql); $p = mysql_fetch_array($result); $Pname=$p['Product_Name']; $Ppic=$p['Product_Pic']; $Pdesc=$p['Product_Des']; $Pprice=$p['Product_Prices']; echo "<img align=center src='$Ppic'> <br>"; echo "<div align=center> <b> $Pname </b></div> <br>"; echo "<div align=center> $Pdesc </div> <br>"; echo "<div align=center> $Pprice baht.</div> <br>"; echo "<input type=button value='add to cart' onclick='addCart($PID)'>"; //echo "<a href=$_SERVER['HTTP_REFERER']> previous </a>"; ?> </table> </td> </tr> </table> <div> <? include('footer.php'); ?> </div> </body> </html>
$sql = "SELECT * FROM product WHERE Product_Id=".$PID." ";
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง