My thankyou page has this script...
$username = $_POST['username'];
$password = $_POST['password'];
$firstname = $_POST['firstname'];
$lastname = $_POST['lastname'];
$email = $_POST['email'];
print "$name,<br/>";
print "<br/>";
print "Thank you for your registering.<br/>";
print "<br/>";
print "Please make a note of your username <b>$username</b> and your password <b>$password</b>. You will use these to login for entering comments in the forum, to add an entry to the guestbook, and when you're ready to purchase a CD.<br/>";
But I don't know how to pass the variables to this confirmation page when everything goes okay with the form. Which is why I have the
if (!$problem) { // If there weren't any problems...
header ('location: http://stu.aii.edu/~jas5317/php/thankyou4.php');