View Full Version : Guestbook help!!!!!!


leafvillage
10-15-2004, 02:41 AM
I need help on my guestbook. I made it customizable but it won't submit any entries!

http://www.independentcommerce.com/Guestbook/Sign_Guestbook.asp?ID=3145


Here's my coding!

<html>

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Code Name</title>
</head>

<body>

<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" width="251" height="232">
<tr>
<td width="251" height="126" bgcolor="#F8DCDD"><img border="0" src="I'm not telling!"></td>
</tr>
<tr>
<td width="296" height="144" bordercolor="#E88C90" bgcolor="#F8DCDD"><font face="News Gothic MT">Code
Name:</font><input type="text" name="T1" size="17">
<p><font face="News Gothic MT">Web:</font><input type="text" name="T1" size="20"></p>
<p><font face="News Gothic MT">What's Up</font></p>
<form action='Save_Guestbook.asp?ID=3145' name='Sign_Guestbook' method='post'>
<p><input type="submit" value="Submit" name="B1"><textarea rows="6" name="S1" cols="20"></textarea></p>
</form>
</td>
</tr>
</table>
</center>
</div>

<style type="text/css">
body {
scrollbar-arrow-color:white;
scrollbar-base-color: FFD9D9;
scrollbar-dark-shadow-color: FFD9D9;
scrollbar-track-color: FFD9D9;
scrollbar-face-color: FFD9D9;
scrollbar-shadow-color: FFD9D9;
scrollbar-highlight-color: FFD9D9;
scrollbar-3d-light-color:FFD9D9 ;
}



</style>


</body>

</html>



Please help!

kittycat
10-15-2004, 08:31 PM
You have the form start in the wrong place... try this for the table cell with the form:

<td width="296" height="144" bordercolor="#E88C90" bgcolor="#F8DCDD">
<form action='Save_Guestbook.asp?ID=3145' name='Sign_Guestbook' method='post'>
<font face="News Gothic MT">Code
Name:</font><input type="text" name="T1" size="17">
<p><font face="News Gothic MT">Web:</font><input type="text" name="T1" size="20"></p>
<p><font face="News Gothic MT">What's Up</font></p>
<p><textarea rows="6" name="S1" cols="20"></textarea> <input type="submit" value="Submit" name="B1"></p>
</form>
</td>

And as a note, your CSS should go between the <head> and </head> tags.

leafvillage
10-16-2004, 01:53 AM
It still doesn't work. It just leads to their homepage!