Oh that code works fine, plus this feedback page works fine. Just something with the handle_regs.php that gives me a blank page.
Here is feedback.php:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>Feedback Form</title>
</head>
<body>
Please complete this form to submit your feedback: <br />
<form action="handle_form.php" method="post">
Mr. <input type="radio" name="title" value="Mr." />
Mrs. <input type="radio" name="title" value="Mrs." />
<br />
First Name: <input type="text" name="first_name" size="10" /> Last Name: <input type="text" name="last_name" size="20" />
<br />
Email Address: <input type="text" name="email" size="20" />
<br />
Response: <select name="response">
<option value="excellent">Great site!</option>
<option value="average">Average site.</option>
<option value="bad">Needs work!</option>
</select>
<br />
Comments: <textarea name="comments" rows="3" cols="30"></textarea>
<br />
<input type="submit" name="submit" value="Send My Feedback" />
</form>
</body>
</html>
And this is handle_form.php:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>Your Feedback</title>
</head>
<body>
<?php // handle_form.php
ini_set ('display_errors', 1); // Let me learn from my mistakes
// This page receives the data from feedback.php
// It will receive: title, name, email, response, comments, and submit
$first_name = $_POST['first_name'];
$last_name = $_POST['last_name'];
$response = $_POST['response'];
$title = $_POST['title'];
$email = $_POST['email'];
$comments = $_POST['comments'];
$name = $first_name . ' ' . $last_name;
print "Thank you, $name, for your comments. <br />";
print "You stated that you found this site to be $response and added: $comments";
?>
<br />
<br />
<?php
$name = urlencode ($name);
$email = urlencode ($email);
print "Click <a href=\"thanks.php?name=$name&email=$email\">here</a> to continue.";
?>
<br />
<br />
<?php
$n = mt_rand (0, 300);
print "Your lucky number is: $n";
?>
</body>
</html>