View previous topic :: View next topic |
Author |
Message |
computershowok.com
Joined: 12 Oct 2006 Posts: 1
|
Posted: Tue Nov 14, 2006 12:20 pm Post subject: email response does not contain info from dropdown menu |
|
|
When I receive the email response it does not contain the data from the pulldown menu. I know it's my fault. I edited the code to fit my page a bit. What did I do? www.computershowok.com
<!-- Begin myContactForm.com Form HTML -->
<style type="text/css">.fieldstyle{font-family: Arial; font-size: 12px; font-weight: normal;
color: #000000; background-color: #FFFFFF; border: 1px solid #C0C0C0; vertical-align: middle}</style>
<form name="contactForm" method="post" action="http://www.mycontactform.com/sendform/sendform.php">
<input name="user" type="hidden" id="user" value="computershowok.com">
<input name="formid" type="hidden" id="formid" value="77563">
<input name="subject" type="hidden" id="subject" value="Tulsa Email Registration">
<table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<td><img src="email.jpg"></td>
<td class=email colspan=2><div class=header><strong>Sign Up for Email Reminders</strong></div>
E-mail Address:
<input name="email" type="text" id="email" size="25" maxlength="100" class="fieldstyle"><br>
I have interest in your show as a . . .
<select name="q[]" id="q[]" class="fieldstyle">
<option value="Customer">Customer</option>
<option value="Current Vendor">Current Vendor</option>
<option value="Future Vendor">Future Vendor</option></select>
<input name="submit" type="submit" style="button: #FFFFFF; font: Arial; font-size: 14; color: #000000; border-bottom:1px solid #000000; border-right:1px solid #000000; border-top:1px solid #000000; border-left:1px solid #000000" value="Submit"></td>
</table>
</form>
<!-- End myContactForm.com Form HTML --> |
|
Back to top |
|
 |
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Wed Nov 15, 2006 8:25 am Post subject: Reply |
|
|
The problem is that the 'name' and 'id' of the dropdown have been changed. The following bit of code needs to be changed:
Code: |
<select name="q[]" id="q[]" class="fieldstyle"> |
It should probably say:
Code: |
<select name="q[0]" id="q[0]" class="fieldstyle"> |
Please re-download the code from the control panel, and compare this line of code to what we've provided in order to ensure that it is correct.
Sincerely,
Nick Ladd
myContactForm.com |
|
Back to top |
|
 |
computershowok
Joined: 14 Nov 2006 Posts: 1
|
Posted: Wed Nov 15, 2006 8:57 am Post subject: Still not working |
|
|
I tried what you suggested but got the same results.
This is the section of interest as generated by you site:
<td><font color="#000000" size="2" face="Arial"><select name="q[]" id="q[]" class="fieldstyle"><option value="Customer">Customer</option><option value="Current Vendor">Current Vendor</option><option value="Future Vendor">Future Vendor</option></select></font></td>
Thanks for your quick reply.
This is what the body of the email reads:
From: test@catholicfrank.com
Subject: Tulsa Email Registration
Sent:11/15/2006 at 10:50:6 EST from 216.201.209.154
I have interest in your show as a . . .:
Thanks,
Frank |
|
Back to top |
|
 |
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Tue Nov 28, 2006 8:45 am Post subject: Reply |
|
|
Try recopying and pasteing all of the code we've provided.
Sincerely,
Nick Ladd
myContactForm.com |
|
Back to top |
|
 |
|