Home › Forums › Back End › [Solved] Redirect After Form Submisson ?? › Re: [Solved] Redirect After Form Submisson ??
August 10, 2009 at 2:13 pm
#62007
Member
(moved to PHP Section)
Falken is correct, the header function is what you’re looking for. A lot of people have it set up like this:
if form fails {
header(fail-page)
}
else {
header(success-page)
}