just clean up your code and it will work:

<?php

$qString = 'http://www.google.ca/search?hl=en&q=php+rocks%21%21%21&meta=';

if (isset($qString))
{
    $buffer = str_replace("&","&amp;",$qString);
}

echo $buffer."\n";

?>

OUTPUT:
C:\>php test.php
http://www.google.ca/search?hl=en&amp;q=php+rocks%21%21%21&amp;meta=

C:\>

On Fri, Mar 6, 2009 at 3:05 PM, Terion Miller <webdev.ter...@gmail.com> wrote:
> I have this and think maybe something is off, because if there is an amp (&)
> in the location then it only displays a comma , and nothing else:
>
> if (isset($_SERVER['QUERY_STRING'])) {$Page .= ($_SERVER['QUERY_STRING']?
> '?'. str_replace("&","&amp;",$_SERVER['QUERY_STRING']) : '');}
>
>
> is that wrong?
>



-- 
Adi...

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

Reply via email to