Home | Scripts | Tutorials | Books | Hosting | Forums | Links|

Navigation:

Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Blog
Books
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links






 
 

SPONSORS



 
 

Sample code for the form

<form ACTION="testinggb1.php" METHOD="POST" >

<table width="100%" border="0" cellspacing="2" cellpadding="2">
<tr>
<td>&nbsp;</td>
<td><b>Please Sign Our Guestbook</b></td>
</tr>
<tr>
<td>Name :</td>
<td>
<input type = "text" name ="name" size="60" maxlength="50" >
</td>
</tr>
<tr>
<td>E-Mail :</td>
<td>
<input type ="text" name ="email" size="60" maxlength="100">
</td>
</tr>
<tr>
<td>Comments : </td>
<td>
<textarea name="comments" cols="60" rows="10"></textarea>
</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>
<div align="center">
<input type = "submit" value="submit" name="submit">
<input type = "reset" name="reset">
</div>
</td>
</tr>
</table>
</form>

which gives us the following

  Please Sign Our Guestbook
Name :
E-Mail :
Comments :
 


back to building a guestbook