Turn on register_globals in PHP
Answer:
When turned on, register_globals will automatically inject the PHP script with variables such as those from HTML form. The feature was DEPRECATED and turn off by default in the recent PHP distributions.
But if you still want to change it, you need to edit the php.ini
vi /etc/php.ini
Locate and set
register_globals = on;
Remember to restart web server such as Apache if needed.