Greg Strong wrote: > Hello. I have installed and configured PHP successfully on several > occasions, but on my most recent installation it almost all works, but > I can't pass variables to a page in the URL. The normal: > filename.php?variable=value doesn't work ... the variable is still > undefined. Any ideas? I'm running Windows 2000 with IIS. Nothing > fancy.
Greg, Sounds like you have a modern php with register_globals set to off by default and you are used to having them on (its in the release notes). Use $_GET['variable'} to obtain GET data. Its detailed in the manual. Alternatively, turn register_globals on in php.ini (not recommended). HTH Chris > > -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php