[PHP] redirect pages

2001-02-26 Thread Peter Houchin
can some one offer a suggestion please ... i have a if ($update) { $result=foo; } in that if statement i want to redirect them to another page after it has processed the result .. i tried having using if ($update) { $result=foo; echo "META HTTP-EQUIV=\"refresh\"

Re: [PHP] redirect pages

2001-02-26 Thread Ankur Verma
ual. hope that helps best regards Ankur Verma HCL Technologies A1CD, Sec -16 Noida, UP India - Original Message - From: "Peter Houchin" [EMAIL PROTECTED] To: "PHP MAIL GROUP" [EMAIL PROTECTED] Sent: Tuesday, February 27, 2001 9:58 AM Subject: [PHP] redirect pages can some

Re: [PHP] redirect pages

2001-02-26 Thread David Robley
On Tue, 27 Feb 2001 14:58, Peter Houchin wrote: can some one offer a suggestion please ... i have a if ($update) { $result=foo; } in that if statement i want to redirect them to another page after it has processed the result .. i tried having using if ($update) { $result=foo;

Re: [PHP] redirect pages

2001-02-26 Thread David Robley
On Tue, 27 Feb 2001 15:15, David Robley wrote: On Tue, 27 Feb 2001 14:58, Peter Houchin wrote: can some one offer a suggestion please ... i have a if ($update) { $result=foo; } in that if statement i want to redirect them to another page after it has processed the result .. i

Re: [PHP] redirect pages

2001-02-26 Thread Yasuo Ohgaki
SNIP I mean, of course header("Location: page.php"); Must teach fingers to wait for brain to engage :-) According to RFC2616, 'Location: ' header must be absolute URI (i.e. http://example.com/test.html), most browser works with relative URI, though. 'Content-Location: ' can be both