<html> <head> <title></title> </head> <body> <form action="" method="POST"> <select name="xx" id="xx" onchange="this.form.submit();"> <option value="">====SELECT====</option> <option value="picture" <?if($_POST["xx"]=="picture"){echo"selected";}?>รูปภาพ</option> <option value="message" <?if($_POST["xx"]=="message"){echo"selected";}?>ข้อความ</option> </select> </form> </body> </html> <?php $xx = isset($_POST['xx'])? mysql_real_escape_string($_POST['xx']) : ''; if ($xx=='picture') { echo "picture"; }else if ($xx=='message') { echo "message"; } ?>
<?php $xx = isset($_POST['xx']) ? mysql_real_escape_string($_POST['xx']) : ''; ?> <html> <head> <title></title> </head> <body> <form action="" method="POST"> <select name="xx" id="xx" onchange="this.form.submit();"> <option value="">====SELECT====</option> <option value="picture" <?php if ($xx == "picture") {echo"selected";}?>>รูปภาพ</option> <option value="message" <?php if ($xx == "message") { echo"selected";}?>>ข้อความ</option> </select> </form> </body> </html> <?php if ($xx == 'picture') { echo "picture"; } else if ($xx == 'message') { echo "message"; }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง