BobLennon wrote:Are you sure "gb_name" has been set in the form or input code?
ya, here is the site: phrendspace.mooo.com/catnip
and here is the code for the printing. (This guestbook is in testing, so it doesn't post, it just prints.)
<?php
$a = $_post["gb_name"];
$b = $_post["gb_email"];
$c = $_post["gb_site"];
$d = $_post["gb_hdynm"];
$e = $_post["gb_yps"];
$f = $_post["gb_wdywts"];
?>
<html>
<head>
<title>GuestBook Posted!</title>
</head>
<body>
<table style='text-align: left; width: 100%; height: 146px;' border='0'
cellpadding='1' cellspacing='0'>
<tbody>
<tr>
<td style='width: 177px; vertical-align: top;'>Name:<br>
</td>
<td style='vertical-align: top;'>
<?php
if(!isset($_post["gb_name"])){
print "test";
}
$a = $_post["gb_name"];
print $a;
?>
<br>
</td>
</tr>
<tr>
<td style='vertical-align: top;'>Email:<br>
</td>
<td style='vertical-align: top;'>
<?php
print $b;
?>
</td>
</tr>
<tr>
<td style='vertical-align: top;'>Website:<br>
</td>
<td style='vertical-align: top;'>
<?php
print $c;
?>
</td>
</tr>
<tr>
<td style='vertical-align: top;'>How Do You Know Me:<br>
</td>
<td style='vertical-align: top;'>
<?php
print $d;
?>
</td>
</tr>
<tr>
<td style='vertical-align: top;'>Your PhrendSpace:<br>
</td>
<td style='vertical-align: top;'>
<?php
print $e;
?>
</td>
</tr>
<tr>
<td style='vertical-align: top;'>What Do You Want to Say:<br>
</td>
<td style='vertical-align: top;'>
<?php
print $f;
?>
</td>
</tr>
</tbody>
</table>
<?php
print $gb_name;
?>
</body>
</html>