$dynamicList = ""; $sql = "SELECT * FROM products ORDER BY date_added DESC LIMIT 300"; $result = $conn->query($sql); // count the output amount $productCount = mysqli_num_rows($result); if ($productCount > 0) { while($row = $result->fetch_array()){ $id = $row["id"]; $product_name = $row["product_name"]; $price = $row["price"]; $date_added = strftime("%b %d, %Y", strtotime($row["date_added"])); $dynamicList .= ' <article class="productInfo"> <div> <a href="product.php?id=' . $id . '"> <img alt="sample" src="inventory_images/' . $id . '.jpg" alt="' . $product_name . ' " width="200" height="200" /> </a> </div> <p class="price"> ' . $price . ' -</p> <p class="productContent">' . $product_name . '</p> <input type="button" name="button" value="Buy" class="buyButton"> </article> '; } } else { $dynamicList = "We have no products listed in our store yet"; } $conn->close(); ?> <!doctype html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta charset="utf-8"> <title>Us Shop by Katoon</title> <link href="eCommerceAssets/styles/eCommerceStyle.css" rel="stylesheet" type="text/css"> <!--The following script tag downloads a font from the Adobe Edge Web Fonts server for use within the web page. We recommend that you do not modify it.--> <script>var __adobewebfontsappname__="dreamweaver"</script><script src="http://use.edgefonts.net/montserrat:n4:default;source-sans-pro:n2:default.js" type="text/javascript"></script> </head> <body> <div id="mainWrapper"> <!-- template_header.php --> <?php include_once("template_header.php")?> <!-- The offer section displays a banner text for promotions --> <?php include_once("template_offer.php")?> <section class="mainContent"> <div class="productRow"> <?php echo $dynamicList; ?> </div> </section> </div> <!-- template_footer.php --> <?php include_once("template_footer.php")?> </div> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง