|
Recently, i moved one of my websites to a different server (both are running the same version of PHP: 4.3.10) only to find out that I was not able to navigate through parts of the site or users could not fill out forms because of a small Get & Post Var problem.
On the original server, i was able to define both GET and POST variable simply by their key name (say /?username=leavethisplace i could simply use $username). However, when moving to the new server, it seemed not to like this idea, and it would mean me going through the whole site (some 50+ PHP files) and change all my GET and POST variables to $HTTP_POST/GET_VARS respectively. Is there any quick way around this? As i really don't want to have to go through all the scripts just because of a server change.
Sorry if this has been bought up before, I did try searching the site forums about this, any help would be great!
|