Missing "textarea" form info
Hello,
I've set up a form on my site, but for some reason, when the form is completed and sent to my email addy, key info is missing. Infact, the actual textarea box title is missing all together.
here's my coding:
Code:
<tr valign="top">
<th align="right"><font color="#FFFFFF">Scheduled Performers:</font></th>
<td>
<textarea name="Scheduled_Performers" rows="3" cols="50"></textarea>
</td>
</tr>
I would appreciate any help in figuring this out.
Thanks!
It's not the HTML form's fault (at least, not in isolation). Whatever program is called by the action attribute of the form element is apparently not aware of your textarea field. As such, we can't really give you a useful answer without seeing that program.
"Please give us a simple answer, so that we don't have to think, because if we think, we might find answers that don't fit the way we want the world to be."
~ Terry Pratchett in
Nation
eBookworm.us
Hi NogDog,
Thanks for replying.
Originally Posted by
NogDog
Whatever program is called by the action attribute of the form element is apparently not aware of your textarea field.
But I don't have a problem with the other textarea that I have further down the page, so is it possible that the program would exclude one?
Code:
<form action="http://fortwaynehiphop.com/v-cgi/forms.cgi"
enctype="application/x-www-form-urlencoded"
method="post">
<table> <tr>
<th align="right"><font color="#FFFFFF">Your Name:</font><font color="#cc0000">*</font>
</th>
<td>
<input type="text" name="Your_Name" size="50" />
</td>
</tr>
<tr>
<th align="right"><font color="#FFFFFF">Your Email address:</font><font color="#cc0000">*</font>
</th>
<td>
<input type="text" name="Your_Email_Address" size="50" />
</td>
</tr>
<tr>
<th align="right"><font color="#FFFFFF">Your
relationship to the event:</font></th>
<td>
<input type="text" name="Your_relationship_to_the_event" size="50" />
</td>
</tr>
<tr>
<th align="right"><font color="#FFFFFF">Event Title:</font><font color="#cc0000">*</font>
</th>
<td>
<input type="text" name="Event_Title" size="50" />
</td>
</tr>
<tr>
<th align="right"><font color="#FFFFFF">Event Date:</font><font color="#cc0000">*</font>
</th>
<td>
<input type="text" name="Event_Date" size="50" />
</td>
</tr>
<tr>
<th align="right"><font color="#FFFFFF">Event Time:</font><font color="#cc0000">*</font>
</th>
<td>
<input type="text" name="Event_Time" size="50" />
</td>
</tr>
<tr>
<th align="right"><font color="#FFFFFF">Venue
Name & Address:</font><font color="#cc0000">*</font> </th>
<td>
<input type="text" name="Venue_Name_and_Address" size="50" />
</td>
</tr>
<tr>
<th align="right"><font color="#FFFFFF">City:</font><font color="#cc0000">*</font>
</th>
<td>
<input type="text" name="City" size="50" />
</td>
</tr>
<tr>
<th align="right"><font color="#FFFFFF">State:</font><font color="#cc0000">*</font>
</th>
<td> <select name="State" size="1">
<option value=""></option>
<option value="AL">AL</option>
<option value="AK">AK</option>
<option value="AZ">AZ</option>
<option value="AR">AR</option>
<option value="CA">CA</option>
<option value="CO">CO</option>
<option value="CT">CT</option>
<option value="DC">DC</option>
<option value="DE">DE</option>
<option value="FL">FL</option>
<option value="GA">GA</option>
<option value="HI">HI</option>
<option value="ID">ID</option>
<option value="IL">IL</option>
<option value="IN">IN</option>
<option value="IA">IA</option>
<option value="KS">KS</option>
<option value="KY">KY</option>
<option value="LA">LA</option>
<option value="ME">ME</option>
<option value="MD">MD</option>
<option value="MA">MA</option>
<option value="MI">MI</option>
<option value="MN">MN</option>
<option value="MS">MS</option>
<option value="MO">MO</option>
<option value="MT">MT</option>
<option value="NE">NE</option>
<option value="NV">NV</option>
<option value="NH">NH</option>
<option value="NJ">NJ</option>
<option value="NM">NM</option>
<option value="NY">NY</option>
<option value="NC">NC</option>
<option value="ND">ND</option>
<option value="OH">OH</option>
<option value="OK">OK</option>
<option value="OR">OR</option>
<option value="PA">PA</option>
<option value="RI">RI</option>
<option value="SC">SC</option>
<option value="SD">SD</option>
<option value="TN">TN</option>
<option value="TX">TX</option>
<option value="UT">UT</option>
<option value="VT">VT</option>
<option value="VA">VA</option>
<option value="WA">WA</option>
<option value="WV">WV</option>
<option value="WI">WI</option>
<option value="WY ">WY </option>
</select></td>
</tr>
<tr valign="top">
<th align="right"><font color="#FFFFFF">Scheduled Performers:</font></th>
<td>
<textarea name="Scheduled_Performers" rows="3" cols="50"></textarea>
</td>
</tr>
<tr>
<th align="right"> Cost:<font color="#FFFFFF">Cost</font><font color="#cc0000">*</font>
</th>
<td>
<input type="text" name="Cost" size="50" />
</td>
</tr>
<tr>
<th align="right"><font color="#FFFFFF">"All
Ages" Event</font><font color="#cc0000">*</font> </th>
<td>
<input type="radio" name="All_ages_event" value="No" checked="checked" class="checkbox" />
<font color="#FFFFFF">No </font>
<input type="radio" name="All_ages_event" value="Yes" class="checkbox" />
<font color="#FFFFFF">Yes </font>
<input type="radio" name="All_ages_event" value="Not Sure" class="checkbox" />
<font color="#FFFFFF">Not Sure </font></td>
</tr>
<tr>
<th align="right"> <font color="#FFFFFF">Event Contact person:</font> </th>
<td>
<input type="text" name="Event_Contact_person" size="50" />
</td>
</tr>
<tr>
<th align="right"> <font color="#FFFFFF">Contact person email:</font> </th>
<td>
<input type="text" name="Contact_person_email" size="50" />
</td>
</tr>
<tr>
<th align="right"> <font color="#FFFFFF">Contact person phone:</font> </th>
<td>
<input type="text" name="Contact_person_phone" size="50" />
</td>
</tr>
<tr valign="top">
<th align="right"> <font color="#FFFFFF"> Additional Information:</font> </th>
<td>
<textarea name="Additional_Information" rows="3" cols="50"></textarea>
</td>
</tr>
<tr>
<th></th>
<td>
<input type="submit" name="Submit" value="Submit" />
</td>
</tr>
<tr>
<th></th>
<td>
<input type="submit" name="Clear_Form" value="Clear Form" />
</td>
</tr>
</table><input type="hidden" name="_vDeckformid" value="508" /></form>
</TD>
</TR>
Sure it's possible. If the script is looking for particular fieldnames to process and does not "know" anything about the field you added, then it is not going to get processed. However, this is all an educated guess on my part, since I cannot actually see the script that does the form processing.
"Please give us a simple answer, so that we don't have to think, because if we think, we might find answers that don't fit the way we want the world to be."
~ Terry Pratchett in
Nation
eBookworm.us
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Posting Permissions
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
Forum Rules
Bookmarks