I have this in test.php
<?php
$GLOBALS['test']="anj";
echo '<A HREF="page.php">Jobs</A>';
?>
and this in page.php
<?php
echo $GLOBALS['test'];
?>
It gives : Notice: Undefined index: test in page.php on line 2
register_globals = On
Still I cannot get to access superglobals