当表单在其中一个页面上使用验证时,如何调用现有 ID?所以当用户输入的数据无效时,页面仍然填充相同的数据......我有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>"; } }当我尝试编辑无效数据之一时,它显示页面,但页面中没有显示现有数据......
1 回答
跃然一笑
TA贡献1826条经验 获得超6个赞
变量名称之间不应有任何空格。所以existing id应该是existingid或者existing_id或者existingId或者类似的东西
process.php文件应该是
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 关注
- 89 浏览
添加回答
举报
0/150
提交
取消