Click to See Complete Forum and Search --> : Get is requiring $
abudabit
02-27-2006, 10:06 AM
My boss is having a problem with his configuration where gets are requiring $ before the variable name in the url to be recognized. I have never seen this configuration before and have no idea if it is with the php.ini file or httpd or something else entirely. Anyone see this before?
chazzy
02-27-2006, 10:36 AM
you mean the $_GET array? or something else?
abudabit
02-27-2006, 10:51 AM
We have global registers on, because the scripts he has are designed around it (variables from gets being $variable instead of $_get['variable'].
But currently instead of form.php?blah=fdsafd we need to do form.php?$blah=ffsdfd with the way the config files seem to be set. I have never seen it need the $ before in the url.
abudabit
02-27-2006, 12:08 PM
Ok, we got it working. I'm not sure why ?$fsdfd=fsdfd was working and the other wasn't but we just got rid of the .ini files and replaced them with the originals and everything was good. That server was set up 5 years ago by a guy who doesn't work here so we had no idea what was going on with the setup.