开发者

PHP - Redirect to a page with confirmation message

开发者 https://www.devze.com 2023-03-25 01:07 出处:网络
Using php, is there a way to redirect to an existing html page with a one line confirmation开发者_JS百科 message.

Using php, is there a way to redirect to an existing html page with a one line confirmation开发者_JS百科 message.

I want to collect user info, insert it into a database, and then show a confirmation message so the user knows the record


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

0

精彩评论

暂无评论...
验证码 换一张
取 消