(php)使用点击搜索按钮从数据库中搜索记录

时间:2015-10-11 10:35:55

标签: php

这是代码search.php

CustomEvent

此页面直接显示数据库的结果。如何点击搜索按钮并显示结果,不要自动显示结果而不单击搜索按钮。

1 个答案:

答案 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);
}