quote:
Originally posted by Baggins
If you look in the page source are they there?
The code for the contact form in the page source is
code:
<div class='snap_preview'><form action="mailto:xyz@xyzhost.com" method="post" enctype="text/plain">
<table border="0" cellpadding="2" cellspacing="0" width="80%">
<tr>
<td width="35%">
<p align="right"><strong>Name:</strong></p>
</td>
<td width="65%"></td>
</tr>
<tr>
<td width="35%">
<p align="right"><strong>Email:</strong></p>
</td>
<td width="65%"></td>
</tr>
<tr>
<td width="35%">
<p align="right"><strong>Comment:</strong></p>
</td>
<td width="65%"><textarea name="comment" cols="25" rows="3"></textarea></td>
</tr>
<tr>
<td width="35%"></td>
<td width="65%">
</td>
</tr>
<tr>
<td width="35%"></td>
<td width="65%"></td>
</tr>
</table>
</form>
</div>
but what ive coded is:
code:
<form action="mailto:xyz@xyzhost.com" method="post" enctype="text/plain">
<table width="80%" border="0" cellspacing="0" cellpadding="2">
<tr>
<td width="35%">
<div align="right"><b>Name:</b></div>
</td>
<td width="65%">
<input type="text" name="name" size="15">
</td>
</tr>
<tr>
<td width="35%">
<div align="right"><b>Email:</b></div>
</td>
<td width="65%">
<input type="text" name="email" size="20">
</td>
</tr>
<tr>
<td width="35%">
<div align="right"><b>Comment:</b></div>
</td>
<td width="65%">
<textarea name="comment" cols="25" wrap="virtual" rows="3"></textarea>
</td>
</tr>
<tr>
<td width="35%"> </td>
<td width="65%">
<input type="submit" name="Submit" value="Submit">
<input type="reset" name="reset" value="Reset">
</td>
</tr>
<tr>
<td width="35%"> </td>
<td width="65%"> </td>
</tr>
</table>
</form>
=/ So the buttons and text areas for Name and Email go missing =/