you CAN'T set register_globals = On at runtime according to php.net below
Please note that register_globals cannot be set at runtime (ini_set()). Although, you can use .htaccess if your host allows it as described above. An example .htaccess entry: php_flag register_globals on.
and btw, you can get always extract your vars like:
extract($_POST);
or
extract($_GET);