For instance, submit.php?step=10 is where I would need to set the variable. Then I redirect back to submit.php and check if that variable is set.
I tried using:
Code: Select all
http_redirect("submit.php", array("edited" => 1, true, HTTP_REDIRECT_PERM);
Code: Select all
isset($_SESSION['edited'])
What are my options for doing this?