当表单在其中一个页面上使用验证时,如何调用现有 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>";
}
}
当我尝试编辑无效数据之一时,它显示页面,但页面中没有显示现有数据......
跃然一笑