Problems with $_GET and $_POST
Hi
I am having a problem with the global arrays in PHP 5.0.27. I have a script that uses the $_GET and $_POST arrays. The page is designed to be recursive. The first time through the script when some local variables need to be set I am getting error messages. The intent of the first run is just to present the basic page and allow for log on to the site. The variables are set in the fashion $script_value = $_POST[âvalue I wantâ];. This produces the error âinvalid index inâ yada yada yada script.php line 15. I can understand that, but when I call the page again this time with a POST value I still get the error message. I am running PHP on a Windows 2000 box with IIS 5.0 ---- forgive me but if I can get this script to run on windows anything should else should be a breeze. Also get the error message if I put the value in the url query string. Seems that PHP is not reading the $_POST or $_GET arrays. The just in time setting is on in the php.ini file and the other global settings are off which I understand is required for the just in time setting to work. I am at a loss, any ideas? Thanks.
everetts
|