<?php $HOST_NAME = "localhost"; $DB_NAME = "test"; $CHAR_SET = "charset=utf8"; // เช็ตให้อ่านภาษาไทยได้ $USERNAME = "root"; // ตั้งค่าตามการใช้งานจริง $PASSWORD = ""; // ตั้งค่าตามการใช้งานจริง $connect = new PDO('mysql:host='.$HOST_NAME.';dbname='.$DB_NAME.';'.$CHAR_SET,$USERNAME,$PASSWORD); ?> <?php ini_set('display_errors', 1); error_reporting(~0); $strKeyword = null; if(isset($_POST["txtKeyword"])) { $strKeyword = $_POST["txtKeyword"]; } ?> <html> <head> <script> function gohome(){ document.location.href='index.php'; } </script> <title>ตรวจสอบย้อนหลัง</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" /> </head> <body> <div class="container"> <br> <h2 align="center">กรุณาใส่ชื่อสินค้า</h2> <br> <form name="frmSearch" method="post" action="<?php echo $_SERVER['SCRIPT_NAME'];?>"> <div class="table-repsonsive"> <div align="center"> <input name="txtKeyword" type="text" id="txtKeyword" value="<?php echo $strKeyword;?>"> <input type="submit" name="submit" value="ยืนยัน"/> <input type="button" value="กลับหน้าหลัก" name="home" onclick="gohome()"> </div> </div> </form> <?php $sql = "SELECT * FROM tbl_order_items WHERE item_name LIKE '%".$strKeyword."%' "; $stmt = $connect->prepare($sql); $stmt->execute(); ?> <br> <form name="" method="post"> <table class="table table-bordered"> <tr> <th> <div align="center">วันที่ </div></th> <th> <div align="center">ชื่อสินค้า </div></th> <th> <div align="center">ซื้อ </div></th> <th> <div align="center">ใช้ไป </div></th> <th> <div align="center">หน่วย </div></th> </tr> <?php while($result = $stmt->fetch( PDO::FETCH_ASSOC )) { ?> <tr> <td align="center"><?php echo $result["item_date"];?></td> <td align="center"><?php echo $result["item_name"];?></td> <td align="center"><?php echo $result["item_bought"];?></td> <td align="center"><input type="text" name="item_used[]" class="form-control item_used" size="1" /></td> <td align="center"><?php echo $result["item_unit"];?></td> </tr> <?php } ?> </table> <div align="center"> <input type="submit" name="submit1" value="ตกลง"/> </div> </form> <?php $connect = null; ?> </body> </html> <style> input[type=button] { color: white; padding: 6px 12px; border-radius: 4px; cursor: pointer; background-color: #FF6633; border: 1px solid #FF6666; } input[type=button]:hover { background-color: #FF3300; } input[type=button1] { color: white; padding: 6px 12px; border-radius: 4px; cursor: pointer; background-color: #FF6633; border: 1px solid #FF6666; } input[type=button1]:hover { background-color: #FF3300; } input[type=submit] { color: white; padding: 6px 12px; border-radius: 4px; cursor: pointer; background-color: #FF6633; border: 1px solid #FF6666; } input[type=submit]:hover { background-color: #FF3300; } </style>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง