0
我想從mytable中選擇項目時使用三個表和& _GET另一個ID在此頁面中打開,所以我想要使用何處和在哪裏完成通過使用兩個角色獲取我的數據。使用多從何處何時從數據庫中選擇項目
<?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'].'"';
?>
我沒有看到任何看起來不應該工作的東西...有什麼問題? –
我的問題是「我不能獲取我的數據isset($ _ POST ['去'])」 –
我可以獲取我的表中的所有數據,但我無法過濾它獲取一些數據 –