-3
私は変数($ city)を他のページから渡して、データベースから選択したいと思います。しかし、いずれかの条件が満たされたときにmysql_queryのいずれかを選択することができますが、私の場合は2番目の条件でのみ動作します。私はPHPでの経験が不足していることをお詫びしますが、誰でもここで助けることができれば感謝します。ありがとう。PHP他の場合MySqlを選択
$allcity = "AllCity";
if (($city) == ($allcity))
{
$sql = mysql_query("SELECT * FROM upload WHERE allcity = '$city'");
}
else
{
$sql = mysql_query("SELECT * FROM upload WHERE city = '$city'");
}
while ($row = mysql_fetch_array($sql))
{
echo $id = $row['id'];
echo $lat = $row['lati'];
echo $long = $row['longi'];
echo $name = $row['name'];
echo $country = $row['country'];
echo $city = $row['city'];
echo $price = $row['price'];
}
'echo $ city;'を実行し、*他のページから何を得ているのかを見てください。 –
'if($ city == $ allcity)' – prasanth
*** [mysql_ * '関数の使用を中止してください](http://stackoverflow.com/questions/12859942/why-shouldnt-i-use-mysql- functions-in-php)*** [これらの拡張機能](http://php.net/manual/en/migration70.removed-exts-sapis.php)はPHP 7で削除されました。[prepared] [PDO](http://php.net/manual/en/pdo.prepared-statements.php)と[MySQLi](http:// php(http://en.wikipedia.org/wiki/Prepared_statement) .net/manual/en/mysqli.quickstart.prepared-statements.php)、PDOの使用を検討してください(http://jayblanchard.net/demystifying_php_pdo.html)。子猫を殺すのをやめる。 –