Hi,
I looked around on the posted messages but didn't a solution, so I am putting the question to the more experienced people.
I am working on a Win 2000 server, IIS to do some PHP. In my php.ini file these settings are mentioned:
- variables_order="EGPCS"
- register_globals=On
- register_argc_argv=On
- gpc_order="GPC"
A first page creates the url : http://littlesister:8060/Test.php?Team=MyTeam&Submit=Select
The Test.php contains this code:
<html>
<body>
<P>Go, <?php echo $_GET['Team']; ?> !</P>
</body>
</html>
Why is the output :
Go, !
in stead of
Go, MyTeam!
All help is very welcome.
THANKS