nothing is wrong with the second server other than it is more secure with its registered globals. If you have access to the php.ini find this line
register_globals =
and change it to either on or off depending on what it is set as now...
But either way this should work:
PHP Code:
<?
echo $_GET['var']; // Echos this
?>