I'm working through a tutorial book.  They are retrieving variables from a
GET parameter by just referencing the variable in the script.

example:

<?php

    echo "Region Name is " . $regionName . "\n";

?>

Where the variable is feed through the get URL:
http://localhost/example.php?regionName=Riverland

The only problem is that I'm using IIS so it doesn't seem to pass the
variable to the script the way the author intended.  Maybe its just an IIS
issue.  I can setup the var with a $_GET["regionName"] but just curious if
there is some sort of php.ini setting or something I'm missing to make this
work.

Thanks!

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

Reply via email to