<html> <head> <title></title> </head> <body> <form name="frmSearch" method="get" action="<?php echo $_SERVER['SCRIPT_NAME'];?>"> <table width="599" border="1"> <tr> <th>Keyword <select name="select2" id="select2"> <?php include "connect.php"; $strSQL = "SELECT DISTINCT name_or FROM organization "; $objQuery = mysql_query($strSQL); ?> <? while($objResuut = mysql_fetch_array($objQuery)) { ?> <option value="<?php echo $objResuut["id_organiz"];?>"><?php echo $objResuut["name_or"];?></option> <?php } ?> </select> <input type="submit" value="Search"></th> </tr> </table> </form> <?php if($_GET["select2"] != "") { include "connect.php"; $strSQL = "SELECT * FROM record WHERE (id_organiz LIKE '%".$_GET["select2"]."%') "; $objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]"); ?> <table width="677" border="1"> <tr> <th width="91"> <div align="center">CustomerID </div></th> <th width="98"> <div align="center">Name </div></th> <th width="198"> <div align="center">Email </div></th> <th width="97"> <div align="center">CountryCode </div></th> <th width="59"> <div align="center">Budget </div></th> <th width="71"> <div align="center">Used </div></th> </tr> <?php while($objResult = mysql_fetch_array($objQuery)) { ?> <tr> <td><div align="center"><?php echo $objResult["CustomerID"];?></div></td> <td><?php echo $objResult["name"];?></td> <td><?php echo $objResult["address"];?></td> <td><div align="center"><?php echo $objResult["tel"];?></div></td> <td align="right"><?php echo $objResult["job"];?></td> <td align="right"><?php echo $objResult["id_organiz"];?></td> </tr> <?php } ?> </table> <?php mysql_close(); } ?> </body> </html>
Quote:$strSQL = "SELECT * FROM record WHERE (id_organiz LIKE '%".$_GET["select2"]."%') ";
$strSQL = "SELECT * FROM record WHERE (id_organiz LIKE '%".$_GET["select2"]."%') "; echo $strSQL;
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง