Ask a Question related to PHP Development, Design and Development.
-
Albert Ahtenberg #1
Observations regarding redirection
Hello,
I don't know if it is only me but I was sure that header("Location:url")
redirects the browser instantly to URL, or at least stops the execution of
the code. But appearantely it continues to execute the code until the
browser send his reply to the header instruction. So an exit(); after each
redirection won't hurt at all
Albert Ahtenberg Guest
-
Peculiar observations of (the CommandLine) property on OSX
Hi all, I wrote a little application that reads and writes its own file type. I wanted to launch the projector when i double clicked on this file... -
ASP redirection
Hey, I have an idea and wonder if it's possible I want to have a form page with aboot three different drop down menus. once all the options... -
redirection
Thank you for your hel my question is: How can I redirect a visitor to a HTML site if he does not have flash plugin instaled on his computer? on my... -
Redirection Help Please
I try to use PHP to redirect to other page and failed. Please give me a help. Thanks. The script is: if($rows_num>0) { session_start();... -
Interesting ! modelsUnderRay() observations
Hi there, Interesting observations that may be of use to those using modelsUnderRay() to detect the height of a 3D mesh landscape or level... -
Kevin Thorpe #2
Re: Observations regarding redirection
Albert Ahtenberg wrote:
header('Location:xxx') simply adds the redirection as a header line at> Hello,
>
> I don't know if it is only me but I was sure that header("Location:url")
> redirects the browser instantly to URL, or at least stops the execution of
> the code. But appearantely it continues to execute the code until the
> browser send his reply to the header instruction. So an exit(); after each
> redirection won't hurt at all
the top of the document. The rest of the script still continues to
execute. Once the browser has loaded the document it reads the header
and goes off to load the redirected page. You will need an exit() after
such a redirection.
Kevin Thorpe Guest



Reply With Quote

