这是代码search.php
CustomEvent
此页面直接显示数据库的结果。如何点击搜索按钮并显示结果,不要自动显示结果而不单击搜索按钮。
答案 0 :(得分:0)
您应该在post
请求上获取get
请求的记录。
if (isset($_POST["txtKeyword"])) {
$strKeyword = $_POST["txtKeyword"];
// execute query here
sql = "SELECT * FROM customer_info WHERE cust_ic LIKE '%" . $strKeyword . "%' OR cust_hp_contact1 LIKE '%" . $strKeyword . "%' limit {$start} , {$perpage}";
$query = mysqli_query($conn, $sql);
}