I am unable to get my search function working. I am not seeing any PHP errors, but the page refreshes and re-displays the database columns. I would like it to only display the results from the search query.
For example, if I search "Mike" I would like to display all the Mikes in "Tech_Num", "Tech_F_Name", "Tech_L_Name" and "Mobile_Num".
Code:
<?php
error_reporting(E_ALL);
ini_set('display_errors', '1');
//Include the connection
include "connect.php";
$sql = "SELECT * FROM tech_info ";
if (isset($_POST['searchquery'])) {
$result = mysqli_query($con, "SELECT * FROM tech_info");
$search_term = $_POST['searchquery'];
$sql .= "WHERE Tech_F_Name = '{$search_term}'";
$sql .= " OR Tech_L_Name = '{$search_term}'";
}
?>
<form action="test2.php" method="POST">
Search: <input type="text" name="searchquery" />
<input type="submit" name="searchname" value="Search Me">
</form>
<table width="70%" cellpadding="5" cellspace="5">
<tr>
<td><strong>Tech_Num</strong></td>
<td><strong>First Name</strong></td>
<td><strong>Last Name</strong></td>
<td><strong>Mobile Number</strong></td>
</tr>
<?php
while ($row = mysqli_fetch_array($result)) {
?>
<tr>
<td><?php echo $row['Tech_Num']; ?>
<td><?php echo $row['Tech_F_Name']; ?>
<td><?php echo $row['Tech_L_Name']; ?>
<td><?php echo $row['Mobile_Num']; ?>
<?php } ?>
</table>