Register Globals is off by default in your installed version of PHP. I don't recommend turning it on, but if you want to, you have to edit the php.ini file. I will let you search for how to do that yourself, but again, I STRONGLY urge you to not even think about it.
Instead, you should code to retrieve your variables using the SuperGlobal $_GET array.
So on your text.php page, it should be:
<?php
echo $_GET['Name'];
?>
The info in your book is a bit outdated. If you submit using the POST method instead of GET, then call the variable like so:
<?php
echo $_POST['Name'];
?>
You can read up on Predefined variables, including the Superglobal arrays, by clicking here and digging into the PHP Manual. You can also read up about why the Register Global option was turned off in the default install.