Hi there!
At my first days on PHP coding i had lots of  register_globals problem. and i couldn’t change php.ini file and ini_set() didn’t work and i found my on way for this..
1
2
3
4
5
6
7
8
9
10
<?php
foreach($_POST as $postkey =>; $postvalue){
$$postkey = $postvalue;
}
 
foreach($_GET as $getkey => $getvalue){
$$getkey = $getvalue;
}
 
?>
I hope  it helps some one :P