php fatel error how could i solve?

  • Thread starter Thread starter Rasheed p
  • Start date Start date
R

Rasheed p

Guest
Iam upload some php files, but now iam trying to access the files its showing some error ie

"FATAL ERROR: register_globals is disabled in php.ini, please enable it !"

so any one can help me to solve this issue
 
It is unlikely that your ISP allows this. Rewrite your code so that it doesn't need to register globals.

http://uk.php.net/register_globals
 
It's a very good thing that register_globals is turned off. Having it on leaves your site open to nasties.

If you're using processing values from a form, say 'email', and you're using $email as the variable in the processing script, change to $POST['email'] for form processing or $GET['email'] for query string processing and you should be right.

That, I believe should point you in the right direction!
 
It is unlikely that your ISP allows this. Rewrite your code so that it doesn't need to register globals.

http://uk.php.net/register_globals
 
Back
Top