RE: [PHP] header(Location with in URL

2002-06-24 Thread Lazor, Ed
Have you tried this? header(Location: $retURL); ? -Original Message- $retUrl = htmlspecialchars ($retUrl); if ($retUrl != ) { header(Location: . $retUrl); Any ideas? This message is

Re: [PHP] header(Location with in URL

2002-06-21 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then Tom Beidler declared I'm trying to use header(Location to redirect to a URL that has variables in it, ie. http://www.blah.com/phones.php?phn_indvId=1phn_indvType=client When it redirects I get the url minus everything after

Re: [PHP] header(Location with in URL

2002-06-21 Thread Richard Baskett
I do this all the time and I just use this syntax: header(Location: http://www.blah.com/phones.php?phn_indvId=1phn_indvType=client;); exit; And it works for me... Rick The greater danger for most of us is not that our aim is too high and we miss it, but that it is too low and we reach it. -

Re: [PHP] header(Location with in URL

2002-06-21 Thread Chris Shiflett
Tom, Include the $returl variable within the quotes, like this: header(Location: $returl); If that doesn't work, add these two lines just before the header() function: echo h1[$returl]/h1; exit; Maybe that will uncover something. Chris Tom Beidler wrote: I'm trying to use header(Location

Re: [PHP] header(Location with in URL

2002-06-21 Thread Tom Beidler
Nope, doesn't work. Maybe it's something with the server/PHP setup? From: Richard Baskett [EMAIL PROTECTED] Date: Fri, 21 Jun 2002 16:35:11 -0700 To: Tom Beidler [EMAIL PROTECTED], PHP General [EMAIL PROTECTED] Subject: Re: [PHP] header(Location with in URL I do this all the time