Re: [PHP] header() confusion

2001-09-26 Thread
> > > Yes that's what I do but it freeze on netscape 6 ? > > FAFAIK the client's browser can't influence the header() call in > > your script. Are you sure there aren't any errors somewhere else. Eg > > before the header() call or at the start of the page where you > > redirect the user to? > > I

RE: [PHP] header() confusion

2001-09-26 Thread Boget, Chris
> > Yes that's what I do but it freeze on netscape 6 ? > FAFAIK the client's browser can't influence the header() call in > your script. Are you sure there aren't any errors somewhere else. Eg > before the header() call or at the start of the page where you > redirect the user to? Indeed. A good

Re: [PHP] header() confusion

2001-09-26 Thread
> Yes that's what I do but it freeze on netscape 6 ? FAFAIK the client's browser can't influence the header() call in your script. Are you sure there aren't any errors somewhere else. Eg before the header() call or at the start of the page where you redirect the user to? -- * R&zE: -- »»

Re: [PHP] header() confusion

2001-09-26 Thread pierre-yves
> So... when redirecting the user to a different page, you should > always put exit after the header() call. Yes that's what I do but it freeze on netscape 6 ? Does anyone has experience this or am I the only one ? py -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [

Re: [PHP] header() confusion

2001-09-26 Thread
From: pierre-yves <[EMAIL PROTECTED]> Date: Wed, Sep 26, 2001 at 08:41:24AM -0400 Message-ID: <007301c14688$8d9b0d10$0100a8c0@py> Subject: [PHP] header() confusion > Hello, > several months ago I discovered that under some IE 4.0 and upgrades of 4.0 the >header() func

[PHP] header() confusion

2001-09-26 Thread pierre-yves
Hello, several months ago I discovered that under some IE 4.0 and upgrades of 4.0 the header() function would simply not redirect if you don't put exit() right after the header() call. Now I'm discovering that header() does not work under netscape 6 if you put exit() right after! How come th