在我的项目中,第一个PHP页面从用户获取输入并将其提交到第二个PHP页面。在第二个PHP页面中,使用函数根据数据库中的值验证来自第一页的值。如果提交的任何值错误,我想重定向到第一页。请帮我解决问题。如果在PHP中不可能,请在jQuery或Ajax等任何其他代码中提及代码。
答案 0 :(得分:5)
以下代码可以根据您的要求(根据您的标题)执行:
<script type="text/javascript">alert("Stupid message");history.go(-1);</script>
我不喜欢这种工作方式,你最好使用会话,或创建一个显示表单并进行验证的文件。
答案 1 :(得分:1)
@M LOHIT
<script type="text/javascript">alert("Stupid message");window.location.href='previouspage';
</script>
这肯定会对你有用
答案 2 :(得分:0)
这可能对您有所帮助
echo '<script>alert("your error message"); location.replace(document.referrer);</script>';
答案 3 :(得分:0)
echo"<script type='text/javascript'>alert('Data Failed');window.location.href='index.php';</script>";