Re: [PHP] URL redirection

2001-05-07 Thread elias
script language=JavaScript location = hello-world.htm; /script can be used even if header is already sent! -elias www.eassoft.cjb.net Jamie Saunders [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi, Is there a PHP function that will redirect the current

RE: [PHP] URL redirection

2001-05-07 Thread Matthew Luchak
? header (Location: http://www.somewhere.com/index.php;); exit; ? Matthew Luchak Webmaster Kaydara Inc. [EMAIL PROTECTED] Hi, Is there a PHP function that will redirect the current page to another url? -- PHP General Mailing List

Re: [PHP] URL redirection

2001-05-07 Thread Christian Reiniger
On Monday 07 May 2001 20:04, elias wrote: script language=JavaScript location = hello-world.htm; /script can be used even if header is already sent! But only works if (a) the browser supports Javascript, (b) supports this JS construct and (c) has Javascript enabled. -- Christian Reiniger

[PHP] URL redirection

2001-05-06 Thread Jamie Saunders
Hi, Is there a PHP function that will redirect the current page to another url? e.g. if ($varTwo == $varOne) { URL redirection code } else { echo You stay right where you are!; } Thanks. Jamie Saunders Mail: [EMAIL

Re: [PHP] URL redirection

2001-05-06 Thread Markus Fischer
header( 'Location: rediret_me_here.php'); - Markus - Original Message - From: Jamie Saunders [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 07, 2001 12:20 AM Subject: [PHP] URL redirection Hi, Is there a PHP function that will redirect the current page to another url

RE: [PHP] URL redirection

2001-05-06 Thread Tyler Longren
: [PHP] URL redirection Hi, Is there a PHP function that will redirect the current page to another url? e.g. if ($varTwo == $varOne) { URL redirection code } else { echo You stay right where you