Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End [Solved] Redirect After Form Submisson ?? Re: [Solved] Redirect After Form Submisson ??

#62007
TheDoc
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)
}