Hi I posted a support request on my hosts forum and a kind soul by the name of Jason posted this - Iwondered if it will help?
I'll try jeffs fix tonight.
Thanks Greg/Jeff
*********************************************
Here's a quick fix for everyone having trouble with register_globals being off> register_globals, for those who don't know, is a PHP configuration setting that allows you to use form, environment, and cookie names as variable names within PHP. With register_globals off you need to specify these variables as follows:
$HTTP_POST_VARS["foo"] (as opposed to just $foo),
$HTTP_GET_VARS["bar"],
$HTTP_COOKIE_VARS["session"],
$HTTP_SERVER_VARS["HTTP_REFERRER"],
etc.
If you want to quickly enable register_globals for your site, add the following line to your .htaccess file:
php_flag register_globals on
That will override the system settings and should get your scripts working again. Good luck.
--Jason
__________________
Jason Pitoniak
Interbrite Communications
http://www.interbrite.com******************************************