Hello again 🙂
Well, I prefer it when global variables are off, but anyhow.
There is one thing you can try to make your global variables on at all times, but depending on the server restrictions, it might not be possible.
However, give this a try:
In your root directory, or where ever you want to use your globals, put a file with the name .htaccess (it's a dot before the htaccess), and insert exactly this:
php_flag register_globals on
If you can logon to unix, you can also do this:
echo "php_flag register_globals on" > .htaccess
Make sure the file is world readable, 644 for example:
chmod 644 .htaccess
Then, if you're lucky, globals will be on.
Oh, and if your server is a Micro$oft sever, dohhhhh, I have no clue.
DrTebi