PHP - 重定向到带有确认消息的页面

发布于 2024-11-28 00:13:52 字数 91 浏览 1 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷心人i 2024-12-05 00:13:52

您可以使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文