0

customer というデータベースをセットアップしました。また、送信時にそのデータベースにデータを入力できるフォームもあり、正常に機能しています。

ただし、同じページでデータベースを検索できるようにしたいと考えています。検索フィールドとボタンを追加し、if ステートメントを使用してどのボタンが押されたかを判断しようとしました。

データベースを検索するための 2 番目のボタンは、押しても何もしていないように見えます。else if ステートメントを入力することさえできず、その理由がわかりません。

次のコードがあります。

<?php
require("header.php");
connect('final');//connect to DB
header ("location:/xampp/newCustomer.php");
if (isset($_POST['add'])) {

//do stuff for submit button here which works fine
}


else if (isset($_POST['btnSearch'])){

echo 'searching'; // test if button is working

$query = $_POST['searching']; 
$data = mysql_query("SELECT *FROM customer WHERE 'First_Name' LIKE '$query'") ;


    if($data === FALSE) {
           $error = 'Query error:'.mysql_error();
              echo $error;
                         }
                 else
                        {

                              $test = array();
                              $colNames = array();
                              while($results = mysql_fetch_assoc($data)) 
                                                    {
                                                       $test[] = $results;
                                                     }

     $anymatches=mysql_num_rows($data);
        if ($anymatches != 0) 
                               {
                              $colNames = array_keys(reset($test));

                                }

if ($anymatches == 0) 
    { 
    echo "Sorry, but we can not find an entry to match your query<br><br>"; 
    } 

} 
}




}     
?>

このような私のフォーム設定では:

<form name="add"  action="newCustomer.php"  method="post">
 <label><span></span> <input type="text" name="query" palceholder="Type to Search"         id="seaching"/></label>
 <br />
 <label><span>Name</span> <input type="text" name="addFname" /></label>


  <button type="button" name="btnSearch" value="Search"  id="btnSearch"   onclick="this.form.action">Search</button></label>

 <input type="hidden" name="searching" value="true" />
 <input type="hidden" name="searching" value="true" />
 <button type="submit" name="add" value="add" id="btnSub" >Add</button></label>


 </form>
    </html>
4

2 に答える 2