Hmm. It doesn't seem to be working correctly.
www.cherreysexhaust.com/guestbook.htm
I don't think I changed the form code correctly.
This is what it was before I made the changes.
<form method="post" width=195 enctype="multipart/form-data" action="guestbook.php"> <input type="hidden" name="env_report" value="REMOTE_HOST,HTTP_USER_AGENT"> <input type="hidden" name="require" value="name,textfield,textarea">
<TABLE WIDTH=136 BORDER=0 align="center" CELLPADDING=0 CELLSPACING=0> <tr> <td>
<div align="center"><font face="Verdana" size="2" color="#333333">
<strong style="font-weight: 400">Name</strong></font></div><div align="center">
<input name="name" type=text size="20"> </div></td> </tr> <tr> <td>
<div align="center"><font color="#333333" face="Verdana" size="2">
<strong style="font-weight: 400">Email</strong></font></div><div align="center">
<input name="email" type=text size="20"> </div></td> </tr> <tr> <td>
<div align="center"><strong style="font-weight: 400">
<font color="#333333" face="Verdana" size="2">Title</font></strong></div><div align="center"> <input name="textfield" type="text" size="20"> </div></td> </tr> <tr> <td>
<div align="center"><strong style="font-weight: 400">
<font color="#333333" face="Verdana" size="2">Message</font><font face="Verdana">
</font></strong></div><div align="center">
<textarea name="textarea" cols="20" rows="5"></textarea> </div></td> </tr> <tr>
<td><div align="right"> <input type="submit"> </div></td> </tr> </table> </form>
I changed the "method=" "enctype=" and "action=" to what you said and it worked out to what you see on online now (link to guestbook at top).
PS. I also changed (action="gb.php") to (action=guestbook.php)
Was I right in doing this?