<!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> </head> <body> <?php mysql_connect("localhost","ใส่ชื่อuserMysql","ใส่รหัสผ่าน"); mysql_select_db("ใส่ชื่อDatabase"); if (isset($_POST['txtsearch'])) { /*ถ้ามีการส่งค่าจากคำที่ค้นหาจากtxtsearch(textfield ให้ชื่อว่า txtsearch)*/ $txtsearch = $_POST['txtsearch']; /*เอาค่าจากtxtsearchที่Postจากหน้าเว็บก่อนหน้ามาใส่ตัวแปร$txtsearch*/ $field_search = $_POST['field_search']; /*เอาค่าจากradioที่Postจากหน้าเว็บก่อนหน้ามาใส่ตัวแปร$field_search*/ $sql = mysql_query("SELECT * FROM book WHERE $field_search = '$txtsearch' ;"); /*เงื่อนไข SQL*/ echo "<table border=1 cellpadding=0 cellpadding=0 > <tr> <td>id</td> <td>title</td> <td>author</td> <td>price</td> <tr>"; if($sql){ while ($data = mysql_fetch_array($sql)) { /*เอาค่าแต่ละฟิลดิ์ที่SQL ได้มาใส่ตัวแปร$data echo "<tr> <td>{$data['id']}</td> <td>{$data['title']}</td> <td>{$data['author']}</td> <td>{$data['price']}</td> </tr> "; } }else { echo "ไม่สามารถสืบค้นข้อมูลได้"; } } ?> <form id="form1" name="form1" method="post" action=""> <p> <label> <input name="field_search" type="radio" id="field_search_0" value="id" checked="checked" />id</label> <label> <input type="radio" name="field_search" value="title" id="field_search_1" />title</label> <label> <input type="radio" name="field_search" value="author" id="field_search_2" />author</label> <label> <input type="radio" name="field_search" value="price" id="field_search_3" />price</label> </p> <p> <label for="txtsearch"></label> <input type="text" name="txtsearch" id="txtsearch" /> <input type="submit" name="button" id="button" value="Submit" /> <br /> </p> <p> </p> </form> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง