PHP Redirect with Post Data
Hi,
I am a newbie PHP programmer and trying to code a small blog.
I will explain what I am trying to do.
You could also just append a variable to the header location and then call it from the page.
header('Location: http://example.com?message=Success');
Then wherever you want the message to appear, just do:
if (isset($_GET['message'])) { echo $_GET['message']; }