Galavantes wrote:
Btw I do not have access to the server config so I cannot disable register_globals
Then make sure that EVERY variable your scripts use, is defined initially by you. So at the top of the script set each variable to a default value for that variable:
$var1 = "";
$var2 = 1;
$var3 = 0;
Then you at least make sure that they cannot sneak a variable past you. When you need something from the passed variables, you just get it:
$var1 = $_POST['somevar'];
But I would suggest contacting your hosting provider, to see whether they can modify it. And I think you can do a ini_set() in your scripts..?