C
Clint
I am creating a website in which I have a form that was automated by the
people who host my website(i filled out a form and it e-mails me the results
in a message to set up appointments) Well, My boss now wants a calendar to
put on the side of the date field, a calendar, and to make the other stuff
look a little more professional.
The website is http://www.precisionautoac.com/contact_us.html and I need to
be able to still have the results e-mailed to me. The code I have is
<form action="http://precisionautoac.com/v-cgi/forms.cgi"
enctype="application/x-www-form-urlencoded"
method="post">
<table> <tr valign="top">
<th align="right">
Name:
</th>
<td>
<textarea name="Name" rows="6" cols="30">First, Last</textarea>
</td>
</tr>
<tr valign="top">
<th align="right">
Service:
</th>
<td>
<textarea name="Service" rows="6" cols="30">Oil Change</textarea>
</td>
</tr>
<tr valign="top">
<th align="right">
Date:
</th>
<td>
<textarea name="Date" rows="6" cols="30">010106</textarea>
</td>
</tr>
<tr valign="top">
<th align="right">
Time:
</th>
<td>
<textarea name="Time" rows="6" cols="30">0830</textarea>
</td>
</tr>
<tr valign="top">
<th align="right">
Comments:
</th>
<td>
<textarea name="Comments" rows="6" cols="30">please include e-mail and
phone number for confirmation or questions</textarea>
</td>
</tr>
<tr>
<th></th>
<td>
<input type="submit" name="Submit" value="Submit" />
</td>
</tr>
</table><input type="hidden" name="_vDeckformid" value="121" />
</form>
Any help would be GREATLY appreciated.
people who host my website(i filled out a form and it e-mails me the results
in a message to set up appointments) Well, My boss now wants a calendar to
put on the side of the date field, a calendar, and to make the other stuff
look a little more professional.
The website is http://www.precisionautoac.com/contact_us.html and I need to
be able to still have the results e-mailed to me. The code I have is
<form action="http://precisionautoac.com/v-cgi/forms.cgi"
enctype="application/x-www-form-urlencoded"
method="post">
<table> <tr valign="top">
<th align="right">
Name:
</th>
<td>
<textarea name="Name" rows="6" cols="30">First, Last</textarea>
</td>
</tr>
<tr valign="top">
<th align="right">
Service:
</th>
<td>
<textarea name="Service" rows="6" cols="30">Oil Change</textarea>
</td>
</tr>
<tr valign="top">
<th align="right">
Date:
</th>
<td>
<textarea name="Date" rows="6" cols="30">010106</textarea>
</td>
</tr>
<tr valign="top">
<th align="right">
Time:
</th>
<td>
<textarea name="Time" rows="6" cols="30">0830</textarea>
</td>
</tr>
<tr valign="top">
<th align="right">
Comments:
</th>
<td>
<textarea name="Comments" rows="6" cols="30">please include e-mail and
phone number for confirmation or questions</textarea>
</td>
</tr>
<tr>
<th></th>
<td>
<input type="submit" name="Submit" value="Submit" />
</td>
</tr>
</table><input type="hidden" name="_vDeckformid" value="121" />
</form>
Any help would be GREATLY appreciated.