Re: [PHP] PHP Redirects

2002-12-12 Thread Richard Baskett
Sure is: header(Location: somepage.ext); exit; Cheers! Rick If you think you're too small to have an impact, try going to bed with a mosquito in the room. - Anita Koddick From: James Johnson [EMAIL PROTECTED] Date: Thu, 12 Dec 2002 12:30:19 -0800 To: [EMAIL PROTECTED] Subject: [PHP] PHP

Re: [PHP] PHP Redirects

2002-12-12 Thread Clint Tredway
Look at this: ?php header(Location: http://www.example.com/;); /* Redirect browser */ exit; /* Make sure that code below does not get executed when we redirect. */ ?This needs to be before anything else being outputted or you can use javascript to