I created a form and set it up to generate an email
containing the information, which will be transmitted to my client.
Everything works fine, except I can't get the form field names to
carry over to the email. For example, I just get the completed
field info w/o the labels, and I'd like to make it easier for my
client to disseminate the information.
Here's the code:
<form action="
http://fcdesign.net/v-cgi/forms.cgi"
method="get"
enctype="multipart/form-data" name="bwccontact"
id="bwccontact"
onsubmit="MM_validateForm('Name','','R','Street_Address','','R','City','','R','State','','R','Zip','','R','Phone','','R','Questions_or_Comments','','R');return
document.MM_returnValue">
<input type=hidden name="print_blank_fields"
value="1">
<table>
<tr>
<th width="197" align="right">
Name: </th>
<td colspan="3">
<input name="Name" type="text" size="30" />
</td>
</tr>
<tr>
<th align="right">
Street Address: </th>
<td colspan="3">
<input type="text" name="Street_Address" size="30" />
</td>
</tr>
<tr>
<th align="right">
City: </th>
<td colspan="3">
<input type="text" name="City" size="30" />
</td>
</tr>
<tr>
<th align="right">
State: </th>
<td width="27">
<input name="State" type="text" size="4" maxlength="2"
/> </td>
<td width="115"> </td>
<td width="131"> </td>
</tr>
<tr>
<th align="right">
Zip: </th>
<td colspan="3">
<input name="Zip" type="text" size="12" maxlength="10"
/> </td>
</tr>
<tr>
<th align="right">
Phone: </th>
<td colspan="3">
<input name="Phone" type="text"
onblur="MM_changeProp('Phone','','value','','INPUT/TEXT')"
value="(xxx) xxx-xxxx" size="30" /> </td>
</tr>
<tr>
<th align="right">
Email: </th>
<td colspan="3">
<input name="Email" type="text" size="30" maxlength="35"
/> </td>
</tr>
<tr>
<th height="40" align="right" valign="top"
nowrap="nowrap">
Questions or Comments: </th>
<td colspan="3">
<textarea name="Questions_or_Comments" cols="40"
rows="5"></textarea> </td>
</tr>
<tr>
<th align="right" nowrap="nowrap"> Preferred Contact:
</th>
<td colspan="3"><input type="radio"
name="Preferred_Contact_Method" value="Phone" checked="checked"
class="checkbox" />
Phone
<input type="radio" name="Preferred_Contact_Method"
value="Email" class="checkbox" />
Email </td>
</tr>
<tr>
<th align="right" nowrap="nowrap">
Best Time to Reach You: </th>
<td colspan="3">
<input name="Best_Time_to_Reach_You" type="text"
value="daytime or evening?" size="30" /> </td>
</tr>
<tr>
<th></th>
<td colspan="3"><input type="submit"
name="Form_Submit" value="Submit Form" />
<input name="Form_Reset" type="reset" value="Reset Form"
/></td>
</tr>
<tr>
<th></th>
<td colspan="3"> </td>
</tr>
</table>
<input type="hidden" name="_vDeckformid" value="567" />
</form>