我有一个在phpmyadmin中创建的数据库,插入了很少的列和数据。现在我可以在浏览器中显示带有记录的表。但我想要的是通过从数据库中过滤来显示特定值。以下是我编写的代码段。此时如果我在搜索字段中输入任何值,它就不会排序,也不会做任何事情。
<?php
if(isset ($_POST['search']))
{
$valueToSearch=$_POST['valueToSearch'];
//$query="SELECT * FROM `books` WHERE CONCAT (`ISBN`, `Title`, `Author`)LIKE '%".$valueToSearch."%'";
$query="SELECT * FROM books WHERE CONCAT ('ISBN', 'Title', 'Author')LIKE '%".$valueToSearch."%'";
$serach_result=filterTable($query);
}else{
$query="SELECT * FROM books";
$serach_result=filterTable($query);
}
function filterTable($query){
$connect=mysqli_connect ("localhost", "root", "", "bookstore-new");
$filter_result=mysqli_query($connect, $query);
return $filter_result;
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Lab 4</title>
<style>
table, tr, th, td
{
border: 1px solid black;
}
</style>
</head>
<body>
<form action="bookstorewebdev.php" method="post">
<input type="text" name="valueToSearch" placeholder="value to search" >
<br><br>
<input type="submit" name="Search" value="Filter" ><br><br>
<table>
<tr>
<th>ISBN</th>
<th>Title</th>
<th>Author</th>
</tr>
<?php while ($row=mysqli_fetch_array($serach_result)):?>
<tr>
<td> <?php echo $row['ISBN'];?></td>
<td> <?php echo $row['Title'];?></td>
<td> <?php echo $row['Author'];?></td>
</tr>
<?php endwhile;?>
</table>
</form>
</body>
</html>
答案 0 :(得分:3)
在你的html表单中有:
<input type="submit" name="Search" value="Filter">
Search
变量,但在php中检查search
。 Search
!= search
您不检查变量valueToSearch
。它可以是空的。
请求将失败。
关于concat
说 chris85 。你为什么需要这个?