猿问

如何从验证表单中获取可用的 id?

当表单在其中一个页面上使用验证时,如何调用现有 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>";

        }

    }

当我尝试编辑无效数据之一时,它显示页面,但页面中没有显示现有数据......


ITMISS
浏览 90回答 1
1回答

跃然一笑

变量名称之间不应有任何空格。所以existing id应该是existingid或者existing_id或者existingId或者类似的东西process.php文件应该是header('Location:/directory/process.php?existingid=existing id');&nbsp; &nbsp;表单.phpif(isset($_GET['existingid'])){&nbsp; &nbsp; print_r($_GET);&nbsp; &nbsp; &nbsp; &nbsp; if($_GET['existingid'] == 'existing id'){&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo "<center><font style='color : red ; font-size:17px;'><b>Invalid.</b></font></center><br>";&nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; }
随时随地看视频慕课网APP
我要回答