标签: php html message confirmation
使用php,有没有办法通过一行确认消息重定向到现有的html页面。
我想收集用户信息,将其插入数据库,然后显示确认消息,以便用户知道记录
答案 0 :(得分:4)
您可以使用header("Location: yourpage.html"); exit();
header("Location: yourpage.html"); exit();
必须在任何输出之前使用它,否则您将收到警告消息header already sent
header already sent