When in your server the PHP directive register_globals is off, you can use function extract() to quickly create the short name for your variables. For example...
<?php
extract($_GET);
echo $id;
?>
But remember, this method is not out of danger, just like register_globals = on.