<?php // ตรวจสอบว่ามีการเพิ่มข้อมูลมั้ย if(isset($_POST)){ // PHP CODE => Insert to DB } // ดึงข้อมูลมาโชว์ทั้งหมด // PHP CODE => Select from DB ?> <form method="post"> <input type="text"> <input type="submit" value="ตกลง"> </form> <table> <tr> <th>รหัส</th> <th>ชื่อ</th> <th>กำหนดคืน</th> </tr> <?php while($row=mysql_fetch_assoc($result)):?> <tr> <td><?=$row['book_no']?></td> <td><?=$row['book_name']?></td> <td><?=$row['return_date']?></td> </tr> <?php endwhile?> </table>
<!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> <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script> <script type="text/javascript"> function getBook(){ $.ajax({ url: "get-book.php?inKeyword="+$('#inKeyword').val(), success: function(data){ if(data != '') $('#tbl-book').append(data); } }); } </script> </head> <body> <label> <input type="text" name="inKeyword" id="inKeyword" /> </label> <label> <input type="button" name="button" id="button" onclick="getBook()" value=" ตกลง " /> </label> <form id="form2" name="form2" method="post" action=""> <table id="tbl-book" width="514" border="0"> <tr> <td width="129" align="center">รหัสหนังสือ</td> <td width="197" align="center">ชื่อหนังสือ</td> <td width="174" align="center">กำหนดคืน</td> </tr> </table> </form> <p> </p> </body> </html>
<?php if(!isset($_GET[inKeyword])) exit; include("config.php"); $sql="select * from books where Book_id='$_GET[inKeyword]' "; $result = mysql_query($sql); $data = mysql_fetch_array($result); ?> <tr> <td align="center"><?=$data[Book_id];?></td> <td align="center"><?=$data[Book_name];?></td> <td align="center"><? $nextweek = time() + (7*24*60*60); echo "".date('Y-m-d', $nextweek); ?></td> </tr>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง