这是更新的代码。
2福特|福特探险家| 2 | 1
1德克萨斯州 2亚利桑那州
城市表
1阿灵顿1 2 Globe 2
执行搜索并打印结果的代码全部在此处:
所以这个文件叫做search.php
enter <?php
$conn = mysql_connect('localhost', 'root','');
$db = mysql_select_db('files',$conn);
$input = $_GET['query'];
$state = $_POST['state'];
$city = $_POST['city'];
if (isset($input) && $input != "" ) {
$select = "SELECT * FROM classifieds";
$where = " WHERE (title like '%" . $input . "%' OR description like '%" . $input .
"%')";
if (!empty($city)) {
$select .= " LEFT JOIN city ON classifieds.city_id=city.id";
$where .= " AND city.name = '" . $city . "'";
}
if (!empty($state)) {
$select .= " LEFT JOIN state ON classifieds.state_id=state.id";
$where .= " AND state.name = '" . $state . "'";
}
$q = $select . $where . ' ORDER BY date DESC';
$r = mysql_query($q);
$rows = mysql_num_rows($r);
}
echo $rows; ?> Search Results For: <?PHP echo $input;
if ($rows > 0) {
while ($row = mysql_fetch_array($r, MYSQL_ASSOC)) {
$description = $row['description'];
echo " <tr >
<td ><a href='classified-" . $row['adid'] . ".htm' >" . $row['title'] . "</a><br />
<span><em><a href='category-" . $cat . ".php'>" . $catname . "</a></em><br/>" .
$description . "...</span></td>
</tr>
";
}
}
?>
<form action="search.php" method="get">
<input type="text" name="query" />
<input type="submit" name="Submit" value="Search" />
<select name="state" >
<option value="null"></option>
<?php
//POPULATE DROP DOWN MENU WITH STATES FROM A GIVEN REGION, COUNTRY
$sql = "SELECT id, statename FROM state";
$states = mysql_query($sql,$conn);
while($row = mysql_fetch_array($states))
{
echo ("<option value=".$row[id]." >$row[statename]</option>");
}
?>
</select>
<select name="city" >
<option value="null"></option>
<?php
$sql = "SELECT id, city FROM city ";
$cities = mysql_query($sql,$conn);
while($row = mysql_fetch_array($cities))
{
echo ("<option value=".$row[id].">$row[city]</option>");
}
?> here
答案 0 :(得分:0)
您基本上需要检查是否设置了state
和/或city
(顺便提一下,您已将GET
设置为表单中的方法,但是您检查{{1}对于城市和州 - 是正确的吗?)并相应地将它们添加到SQL查询中:
$_POST
注意标题和描述的括号 - 没有它们或者优先于AND。
作为旁注,您不需要为同一数据查询数据库两次。
答案 1 :(得分:0)
我以为我会分享Bjauy给我的解决方案:)
$select = "SELECT * FROM classifieds";
$where = " WHERE (title like '%" . $input . "%' OR description like '%" .
$input . "%' )";
if (!empty($state)) {
$where .= " AND state_id = '" . $state . "'";
}
if (!empty($city)) {
$where .= " AND city_id = '" . $city . "'";
}
$query = $select . $where . ' ORDER BY date DESC';