Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在提交后以及在我的数据库中插入表单数据(以正确的方式)之后将我的表单重定向到一个 php 页面。我使用 action="insert-data.php" 插入数据,但我想将用户重定向到不同的 php 页面(这不是欢迎页面)。插入后如何重定向他?非常感谢。
使用header("Location: http://example.com/page.html"); ,但请确保您不打印或回显任何内容,在调用之前根本没有输出。
header("Location: http://example.com/page.html");