Okey dokaey, I have a simple post script, and when it's done I just want to go back to the page that was doing the posting.
Any way to do it like this?
if($done) { //go to page }
Okey dokaey, I have a simple post script, and when it's done I just want to go back to the page that was doing the posting.
Any way to do it like this?
if($done) { //go to page }
if ($done) { header("Location: /url/to/the/other/page"); exit; }