I just signed up for a web hosting and they dont turn the erorrs off and i need globals on. is there a way to manipulte this with .htaccess or inside of the php script.
Use ini_set() to turn register_globals on, and use ini_restore() to turn things back to normal. Sadly, I doubt you'll be able mess around with the php.ini file. It never hurts to give it a try, though.
create an .htaccess file and put this inside:
php_flag register_globals on
upload the file inside the directory you want to enable register global.