<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <?php include 'connect.php'; ?> <html lang="en" xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>ค้นหาข้อมูล : itoffside.com</title> <link href="css/bootstrap.min.css" rel="stylesheet"> <link href="css/bootstrap-theme.min.css" rel="stylesheet"> <style> body{ margin-top: 20px; } .loading{ background-image: url("ajax-loader.gif"); background-repeat: no-repeat; display: none; height: 100px; width: 100px; } </style> </head> <body> <div class="container"> <div class="row"> <div class="col-md-12"> <form class="form-inline" name="searchform" id="searchform"> <div class="form-group"> <label for="textsearch" >ชื่อสินค้า</label> <input type="text" name="POID" id="POID" class="form-control" placeholder="ข้อความ คำค้นหา!" autocomplete="off"> </div> <button type="button" class="btn btn-primary" id="btnSearch"> <span class="glyphicon glyphicon-search"></span> ค้นหา </button> <button type="button" class="btn btn-primary" id="btnSearch1"> <span class="glyphicon glyphicon-search"></span> 1 </button> </form> </div> </div> <div class="loading"></div> <div class="row" id="list-data" style="margin-top: 10px;"> </div> </div> <script type="text/javascript" src="jquery-1.11.2.min.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script> <script type="text/javascript" src="./fancybox/jquery.mousewheel-3.0.4.pack.js"></script> <script type="text/javascript" src="./fancybox/jquery.fancybox-1.3.4.pack.js"></script> <link rel="stylesheet" type="text/css" href="./fancybox/jquery.fancybox-1.3.4.css" media="screen" /> <script type="text/javascript"> $(function () { $("#btnSearch").click(function () { $.ajax({ url: "search.php", type: "post", data: {POID: $("#POID").val()}, beforeSend: function () { $(".loading").show(); }, complete: function () { $(".loading").hide(); }, success: function (data) { $("#list-data").html(data); $("#btnSearch1").fancybox(); } }); }); $("#searchform").on("keyup keypress",function(e){ var code = e.keycode || e.which; if(code==13){ $("#btnSearch").click(); return false; } }); }); </script> </body> </html>
<?php include 'connect.php'; $sql = "select * from po where POID like '%{$_POST['POID']}%'"; $query = mysql_query($sql); ?> <div class="col-md-12"> <table class="table table-bordered"> <thead> <tr> <th>ยืนยัน</th> <th>รหัส po</th> <th>วันที่</th> <th>ชื่อบริษัท</th> <th>ชื่อสินค้า</th> <th>จำนวน</th> <th>หน่วยนับ</th> <th>ราคา</th> </tr> </thead> <tbody> <?php $i=1; while ($result = mysql_fetch_assoc($query)) { ?> <tr> <td align ="center"><button type="button" class="btn btn-primary" id="btnSearch1"> <span class="glyphicon glyphicon-search"></span> 2 </button></td> <td><?php echo $result['POID'];?></td> <td><?php echo $result['DATEDOC'];?></td> <td><?php echo $result['COMP'];?></td> <td><?php echo $result['DESC'];?></td> <td><?php echo $result['QUAN'];?></td> <td><?php echo $result['UNIT_SAL'];?></td> <td><?php echo number_format($result['PRICE']);?></td> </tr> <?php $i++; } ?> </tbody> </table> </div>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง