Ask a Question related to PHP Development, Design and Development.
-
Kai #1
direct to another page
After submitting a form, I would like to redirect to another page. In ASP
you can do : response.redirect "filename.asp", but what about PHP?
Kai Guest
-
Dealing with direct acess of page, not passingstring
the first one seems like the easiest method and worked like a charm. Thanks for your reply! -
Dealing with direct acess of page, not passing string
The problem is simple, to view the article, as you see in the code it passes along the article ID in the url. WHERE articleID=#articleID# so when... -
Opposite of RedirectFromLoginPage? Preset page to direct to...
How can I set the page that the login page needs to send the user to. I have a login page that does the RedirectFromLoginPage method, but I am now... -
Page Through Image with Direct Link
Does anyone know of a cf tag that can do something similar to this page: http://www.alacasting.com/book6.asp Basically you choose a catalog and... -
Re-direct
HI, I was wondering how I would create an automatic re-direct if an item/file was not available through a link on my site? Any assistance... -
Patrick Lioi #2
Re: direct to another page
"Kai" <kairoen@msn.com> wrote in message news:<AA6Za.5611$BD3.2472853@juliett.dax.net>...
Call header() like so before *any* output:> After submitting a form, I would like to redirect to another page. In ASP
> you can do : response.redirect "filename.asp", but what about PHP?
header("Location: filename.php");
And then exit().
response.redirect probably works by doing this for you.
Patrick Lioi Guest



Reply With Quote

