<?php
extract($_GET);
$sql = "SELECT * FROM tablename order by Name DESC";
$sql = "SELECT * FROM tablename where age = "31";
$db = mysql_connect("localhost","root","password");
if (!$db) {
die("");
}
$db_select = mysql_select_db('databasename',$db);
if (!$db_select) {
die("");
}
if (!($result = mysql_query($sql, $db))) {
print("Could not execute query! <br />");
die(mysql_error() . "</body></html>");
} // end if
echo "<table>
<tr>
<th>Name</th>
<th>Age</th>
</tr>";
while($row = mysql_fetch_array($result)){
echo "<tr>";
echo "<td>".$row['Name']."</td>";
echo "<td>".$row['Age']."</td>";
}
echo "</table>";
mysql_close($db);
?>
在選擇名稱或年齡時,我應該在哪裏添加運行sql語句的name和age的if else語句?姓名和年齡是從不同的列,但在同一個表PHP分離如果其他語句
你的意思我們需要運行這些$ sql中的任何一個?請妥善澄清你的問題。 –
要在選擇名稱或年齡時運行sql語句 – Synetrix
好的,以及可能的查詢字符串鍵是什麼?正如$ _GET ['name']和$ _GET ['age']? –