Hi
Try altering name.php to this
name.php:
<html>
<?php
/*In this program you'll learn how to get vars from
an html web page.*/
# Setting up Variables
$name = $_GET['name'];
# Setup to echo statement
echo "Your name is: $name.";
?>
</html>
Reason:
HTTP_GET_VARS and HTTP_POST_VARS is not now supported in PHP5, (assuming you are using php5), but there are a lot more reasons for using $_GET and $_POST see this post from a while back
http://p2p.wrox.com/topic.asp?TOPIC_ID=9945
hope this helps
David