Re: [PHP] A faster way to Redirect pages

2003-03-17 Thread John Nichel
Manual-HTTP-Header Poon, Kelvin (Infomart) wrote: Hi, I know this topic was discussed but I deleted my previous mail so I can't go back and review them. My question is, is there a faster way to redirect html pages other than just using meta HTTP-EQUIV=REFRESH CONTENT=1; URL=login.php ? Is

Re: [PHP] A faster way to Redirect pages

2003-03-17 Thread Pete James
Try zero seconds? Poon, Kelvin (Infomart) wrote: Hi, I know this topic was discussed but I deleted my previous mail so I can't go back and review them. My question is, is there a faster way to redirect html pages other than just using meta HTTP-EQUIV=REFRESH CONTENT=1; URL=login.php ? Is

Re: [PHP] A faster way to Redirect pages

2003-03-17 Thread Oscar F
Kelvin, You can use ? header(Location:login.php); exit; ? If you want to do it with PHP. You have to put it at the top of the file, since no other information can be sent before the Location header. HTH, -Oscar F. Poon, Kelvin (Infomart) wrote: Hi, I know this topic was discussed but I

Re: [PHP] A faster way to Redirect pages

2003-03-17 Thread Erik Price
Poon, Kelvin (Infomart) wrote: I know this topic was discussed but I deleted my previous mail so I can't go back and review them. STFA: http://marc.theaimsgroup.com/?l=php-general My question is, is there a faster way to redirect html pages other than just using meta HTTP-EQUIV=REFRESH

RE: [PHP] A faster way to Redirect pages

2003-03-17 Thread Barajas, Arturo
: [PHP] A faster way to Redirect pages Kelvin, You can use ? header(Location:login.php); exit; ? If you want to do it with PHP. You have to put it at the top of the file, since no other information can be sent before the Location header. HTH, -Oscar F. Poon, Kelvin (Infomart

Re: [PHP] A faster way to Redirect pages

2003-03-17 Thread Pete James
: Lunes, 17 de Marzo de 2003 11:34 a.m. To: Poon, Kelvin (Infomart) Cc: '[EMAIL PROTECTED]' Subject: Re: [PHP] A faster way to Redirect pages Kelvin, You can use ? header(Location:login.php); exit; ? If you want to do it with PHP. You have to put it at the top of the file, since no other information