我正在从数据库生成网页。现在我的问题是:
我的数据库(MySql)中有 1000 条记录(名称)。我在页面中创建了一个搜索框,当我输入数据库中的任何名称或名称的一部分时,所有名称都应该出现。例如-
SELECT * FROM table where name like '%$find%'
现在我想在新页面上显示选定的名称(通过查询获取),以便当我单击任何名称时,应该打开一个新页面以及与该选定名称相关的所有数据(存在于属于的表中)数据库)要使用导航按钮显示在该页面上,我应该使用什么查询来执行它。
简而言之,我想让我的页面像 Google 搜索页面一样。
我的第一页是这样的
<html>
<body >
<h2>Search</h2>
<form name="search" method="post" action="second.php">
Search Name: <input type="text" name="find" id="find" />
<input type="submit" name="search" value="search" />
</form>
</body>
</html>
第二页有点像这样
<html>
<head>
<script>
function favBrowser()
{
var mylist=document.getElementById("opt");
document.getElementById("favorite").value=mylist.options[mylist.selectedIndex].text;
}
</script>
</head>
<body>
<form method="get">
<?php
$find = $_REQUEST['find'];
$con = mysql_connect("localhost","root","");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("data", $con);
$result = mysql_query("SELECT * FROM table where name like '%$find%'");
$result_rows = mysql_num_rows($result);
while($row = mysql_fetch_array($result))
{
// $names[] = $row['name'];
// echo $names[0];
// echo "$row[name]. $row[id] <a href='data.php?edit=$row[name]'>edit</a><br />";
$_name = $row['name'];
echo "Name : <input type='text' name='name' value='$_name' size='30'>";
echo "<br />";
}
}
mysql_close($con);
?>
<!--</select>
<input type ="submit" value="submit">
<p>Your selected name is: <input type="hidden" name="fun" id="favorite" size="30">
</p>
-->
</body>
</html>