0

我想在使用三个表时从 mytable 中选择项目并 &_GET 在此页面中打开另一个 id,所以我想使用 where 和 where 使用两个角色来完成获取我的数据。

<?php   
$sel = "SELECT * FROM `informations` where `cate_id` =".$_GET['info_id'];
$done = mysql_query($sel);
?>

<form action="" method="post" enctype="multipart/form-data">
<label for="location"></label>
<select name="location" id="location"><?php
$sel_cate = "SELECT * FROM locations";
$done_cate = mysql_query($sel_cate);

while($get_cate = mysql_fetch_array($done_cate)){

echo '<option value="'.$get_cate['id'].'">'.$get_cate['location'].'</option>';
$loc=$get_cate['id'];
}

?>      
</select>
<input type="submit" name="go" id="go" value="Go"> 
<input type="submit" name="all" id="all" value="Show All..."> 

</form>
<?php
if(isset($_POST['go'])){

$sel ='SELECT * FROM `pharmacies` WHERE `cate_id` ="'.$_GET['info_id'].'" ||     `location_id` = "'.$_POST['location'].'"';

?>
4

1 回答 1

-1

我尝试了这段代码,当 isset($_POST['go']) 变量 $sel 得到 $_GET['info_id'] 和 $_POST['location'] 值时。查询生成时没有错误,并且必须获取信息。

我在你的:if(isset($_POST['go'])) 中没有看到 mysql_query。也许你忘记了查询:

if(isset($_POST['go']))
{
  $sel = 'SELECT * FROM `pharmacies` WHERE `cate_id` ="'.addslashes($_GET['info_id']).'" or `location_id` = "'.addslashes($_POST['location']).'"';
  $selRslt = mysql_query($sel);
  while($row = mysql_fetch_array($selRslt))
  {
    var_dump($row);
  }
}
于 2013-05-20T01:35:05.277 回答