當(dāng)表單在其中一個頁面上使用驗證時,如何調(diào)用現(xiàn)有 ID?所以當(dāng)用戶輸入的數(shù)據(jù)無效時,頁面仍然填充相同的數(shù)據(jù)......我有process.php文件:header('Location:/directory/process.php?existing id=existing id');和form.php文件,我嘗試獲取存在的 id: if(isset($_GET['existing id'])){ if($_GET['existing id'] == 'existing id'){ echo "<center><font style='color : red ; font-size:17px;'><b>Invalid.</b></font></center><br>"; } }當(dāng)我嘗試編輯無效數(shù)據(jù)之一時,它顯示頁面,但頁面中沒有顯示現(xiàn)有數(shù)據(jù)......
1 回答

躍然一笑
TA貢獻1826條經(jīng)驗 獲得超6個贊
變量名稱之間不應(yīng)有任何空格。所以existing id應(yīng)該是existingid或者existing_id或者existingId或者類似的東西
process.php文件應(yīng)該是
header('Location:/directory/process.php?existingid=existing id');
表單.php
if(isset($_GET['existingid'])){
print_r($_GET);
if($_GET['existingid'] == 'existing id'){
echo "<center><font style='color : red ; font-size:17px;'><b>Invalid.</b></font></center><br>";
}
}
- 1 回答
- 0 關(guān)注
- 147 瀏覽
添加回答
舉報
0/150
提交
取消