Redirect After Form Processing After processing an html form, it is often a good idea to redirect the user to a new url, rather than just presenting the results. Consider this php example: if ($_POST["name"]) { # do something print "Thanks for posting " . $_POST["name"] . "<br>"; } After processing the form input, it prints a message. This works fine until the user reloads the page for some rea