-1
我的查詢根據年齡範圍查找數據庫中用戶的「用戶名」。我想在example.com/username或username.example.com或任何最簡單的結果鏈接中輸入「用戶名」。將mysql查詢結果鏈接到同名網址
這裏是我的代碼:
$term = $_POST['term'];
$sql = mysql_query("select * from Users1
WHERE `age` BETWEEN " . $_POST['age1'] . " and " . $_POST['age2'] . "
");
while ($row = mysql_fetch_array($sql)){
echo 'Username: '.$row['username'];
}
任何幫助,非常感謝!
非常感謝
您正在使用棄用函數,而不是消毒輸入。請使用'PDO'。 (此外,您應該已經知道如何回顯錨標記和一些文本) –
搜索使用php在Google上重寫url。 –