gpt4 book ai didi

php - 如何将MYSQL数据显示到PHP搜索框

转载 作者:行者123 更新时间:2023-12-01 00:50:54 25 4
gpt4 key购买 nike

你好,我在完成这项任务时遇到了很多问题

我在 xampp 上建立了一个名为 search_test 的数据库,其中有名字和姓氏作为字段。我已经设置了一个 php 表单,所以当用户输入名称时说 Andre 它返回数据库中的所有 andres。有一个问题,它一直告诉我没有搜索结果,即使我知道数据库中有数据这里的代码应该是一个名为 index.php 的 php 页面

    <?php
mysql_connect("localhost","michael","xcA123sd") or die(mysql_error());
mysql_select_db("search_test") or die ("could not find db");
$output ='';
if (isset ($_POST['search']));
$searchq = $_POST['search'];
$query = mysql_query("SELECT * FROM members WHERE firstname LIKE '%searchq%'" ) or die("could not search");
$count = mysql_num_rows($query);
if($count == 0){
$output = 'There was no search results !';
}else{
while($row = mysql_fetch_array($query)){
$fname = $row['firstname'];
$output .='<div> '.$fname.'</div>';
}

}
}


?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>search</title>
</head>
<body>
<form action="index.php" method="post">
<input type="text" name="search" placeholder="search for members"/>
<input type="submit" value=">>"/>
</form>
<?php print("$output);?>
</body
</html>

例如我输入andre然后我得到响应

没有搜索结果!

有人可以帮忙吗

最佳答案

问题出在你的这行代码

$query = mysql_query("SELECT * FROM members WHERE firstname LIKE '%searchq%'")

变量searchq后面没有$

关于php - 如何将MYSQL数据显示到PHP搜索框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15731470/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com