--- "Jonathan Rosenberg" <[EMAIL PROTECTED]> wrote:

> I tried it & it fails.  The browser sends the query
> string with the &amp; & the $_GET access fails.
> 
> I am using IE 6.  I can't imagine that it would be
> buggy in this regard.

I just tried this in IE 6, and it worked fine for me. My test code
follows:

<?
if (isset($_GET["foo"]))
{
     echo "<pre>";
     print_r($_GET);
     echo "</pre>";
}
else
{
?>
<a href="./test.php?foo=bar&amp;blah=blah">Click Here</a>
<?
}
?>

This should display:

Array
(
    [foo] => bar
    [blah] => blah
)

Does it not work for you?

Chris

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

Reply via email to