<? $sql = "SELECT * FROM image ORDER BY id desc "; $result = mysql_query($sql)or die(mysql_error()); $tcount = mysql_num_rows($result); $rpp = 15; while(($count<$rpp)) { $row = mysql_fetch_array($result); $img_path = $row['img_path']; ?> <div class="Image_Frame"> <img src="<?PHP echo $img_path ?>"/> </div> <?PHP $i++; $count++; } ?>
<? $sql = "SELECT * FROM image ORDER BY id desc "; $result = mysql_query($sql)or die(mysql_error()); $tcount = mysql_num_rows($result); $rpp = 15; // ตัวแปรนี้ while(($count<$rpp)) { // ตรงนี้แปลว่า หาก $count ยังมีค่าน้อยกว่า $rpp (ซึ่งมีค่าเท่ากับ 15 แน่นอน) ให้ทำงานต่อไปนี้ $row = mysql_fetch_array($result); $img_path = $row['img_path']; ?> <div class="Image_Frame"> <img src="<?PHP echo $img_path ?>"/> </div> <?PHP $i++; // เพิ่มค่า $i $count++; // เพิ่มค่า $count } ?>
<? $sql = "SELECT * FROM image ORDER BY id desc "; $result = mysql_query($sql)or die(mysql_error()); while(($row = mysql_fetch_array($result))) { // ตรงนี้จะแปลได้ว่าถ้า $row ยังมีค่าที่เป็นจริง ซึ่งได้มาจากการเรียก mysql_fetch_array($result) ให้ทำงานต่อไปนี้ $img_path = $row['img_path']; ?> <div class="Image_Frame"> <img src="<?PHP echo $img_path ?>"/> </div> <?PHP } ?>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง