PHP - 重定向到带有确认消息的页面
使用 php,有没有一种方法可以使用一行确认消息重定向到现有的 html 页面。
我想收集用户信息,将其插入数据库,然后显示确认消息,以便用户知道该记录
Using php, is there a way to redirect to an existing html page with a one line confirmation message.
I want to collect user info, insert it into a database, and then show a confirmation message so the user knows the record
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
header("位置:yourpage.html");
exit();
必须在任何输出之前使用它,否则您将收到一条警告消息
header已经发送
you can use
header("Location: yourpage.html");
exit();
It must be used before any output, or you will get a warning message
header already sent