On Tue, 10 Apr 2001 14:18:54 -0400, Daniel ([EMAIL PROTECTED])
wrote:
>I am writting a session enabled webapp that has a typical login
>page.  The
>page submits to itself and upon validation, I want to allow the user
>to
>continue on to the next page.
>
>>From everything I have read so far, the only way to redirect
>programmatically is via header().  Unfortunately, what I'm seeing is
>that
>while the followup page is loaded, the location in the address bar
>(of IE
>5.5) is not updated.  Is this something specific to IE?  I would
>like the
>address bar to have the correct address instead of the old page.
>
>Any suggestions?

in my experience, using a full url:
header("Location: http://www.mysite.com/mypage.html");

will do what you want while just using a path:
header("Location: /mypage.html");

will not.



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to