Ok, I'm TRYING to learn PHP here, and I'v attempted a code in the book, but it doesn't work. The code is below, if there is anything you may think I might be doing wrong, such as naming a file wrong, etc. Please let me know, or if its the books fault, let me know too, thnks. Listing 9.2 seems to work fine and append the data to the URL like it should, but Listing 9.3 doesn't read it from there, whats wrong?
Listing 9.2 A Simple HTML Form
<head>
<title>Listing 9.2 A simple HTML form</title>
</head>
<body>
<form action="eg9.3.php" method="GET">
<input type="text" name="user">
<br>
<textarea name="address" rows="5" cols="40">
</textarea>
<br>
<input type="submit" value="hit it!">
</form>
</body>
Listing 9.3 Rading Input from the Form in Listing 9.2
<head>
<title>Listing 9.3 Reading input from the form in Listing 9.2</title>
</head>
<body>
<?php
print "Welcome <b>$user</b><P>\n\n";
print "Your address is:<P>\n\n<b>$address</b>";
?>
</body>