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 and I just use this syntax:
> 
> header("Location:
> http://www.blah.com/phones.php?phn_indvId=1&phn_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." - Michelangelo
> 
>> From: Tom Beidler <[EMAIL PROTECTED]>
>> Date: Fri, 21 Jun 2002 16:22:20 -0700
>> To: php list <[EMAIL PROTECTED]>
>> Subject: [PHP] header("Location  with & in URL
>> 
>> 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=1&phn_indvType=client
>> 
>> When it redirects I get the url minus everything after the first ampersand.
>> I tried using htmlentities with no joy like so...
>> 
>> $retUrl = htmlspecialchars ($retUrl);
>> 
>> if ($retUrl != "") {
>> header("Location: " . $retUrl);
>> 
>> Any ideas?
>> 
>> 
>> -- 
>> PHP General Mailing List (http://www.php.net/)
>> To unsubscribe, visit: http://www.php.net/unsub.php
>> 
> 
> 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to