I leave it off but I'm a n00b so what would I know... LOL 😉
Seriously though, if you only want register globals on for html forms, it's so easy to get the vars by using
$var = $_GET["var"];
$var = $_POST["var"];
or if for some reason you want the lot, just do
extract($_GET);
extract($_POST);