Click to See Complete Forum and Search --> : Do I need to edit php.ini?


zingbats
07-19-2003, 07:22 AM
Hi!

I have recently installed PHP 4.3.2 on my home comp (winXP) with apache 2.

It works well, except, I have to use $_get and $_post which means I am spending forever changing ALL my scripts.

Can I edit php.ini to allow the good old automatic $tag creation when a form is submitted?


Alex.

mhalloran
07-19-2003, 08:38 AM
yes. search for the line:

register_globals = Off

and change it to:

register_globals = On

then restart the server.