submit button doesn’t do anything…
Posted: 20 May 2008 08:31 PM   [ Ignore ]
Newbie
Rank
Total Posts:  4
Joined  2008-05-19

I am a total nooob to this… here’s what I have:

{exp:freeform:form form_name="contact_form" return="site/request_received" notify="me@mydomain.com" template="contact_template" required="name|email"}

        
<h2>Support Form</h2>
        <
table width="650" border="0" cellpadding="5" class="table_format">
          <
tr>
         <
td width="181"><div align="right">Full Name:</div></td>
         <
td width="443"><input type="text" id="name" name="name" size="40" maxlength="35"" /></td>
          </tr>
          <tr>
         <td><div align="
right">Email:</div></td>
         <td><input type="
text" id="email" name="email" size="40" /></td>
          </tr>
          <tr>
         <td><div align="
right">Institution:</div></td>
         <td><input type="
text" id="institution" name="institution" size="40" /></td>
          </tr>
          <tr>
         <td><div align="
right">Title</div></td>
         <td><input type="
text" id="title" name="title" size="40" /></td>
          </tr>
          <tr>
         <td><div align="
right">Address:</div></td>
         <td><input type="
text" id="address" name="address" size="40" /></td>
          </tr>
          <tr>
         <td><div align="
right">City:</div></td>
         <td><input type="
text" id="city" name="city" size="40" /></td>
          </tr>
          <tr>
         <td><div align="
right">State:</div></td>
         <td><select name="
State">
          <option value="" selected="
selected">Select a State</option>
          <option value="
AL">Alabama</option> [and so forth]
          </select></td>
          </tr>
          <tr>
         <td><div align="
right">Zip:</div></td>
         <td><input type="
text" id="zip" name="zip" size="5" /></td>
          </tr>
          <tr>
         <td><div align="
right">Country:</div></td>
         <td><input type="
text" id="country" name="country" size="40" /></td>
          </tr><tr>
         <td>&nbsp;</td>
         <td><input name="
submit" type='submit' value='Submit' /></td>
          </tr>
        </table>

        {/exp:freeform:form}

I have made a template called “contact_template” and have put each and every form field in the fields area.  nothing happens when I click submit… ideas?

thanks

Profile
 
 
Posted: 20 May 2008 10:19 PM   [ Ignore ]   [ # 1 ]
Administrator
Avatar
RankRankRankRank
Total Posts:  3350
Joined  2006-10-18

panzhuli,

It could be that you have an extra Quotation mark in this line: LOL rasberry

<td width="443"><input type="text" id="name" name="name" size="40" maxlength="35"" /></td>

maxlength="35”

 Signature 
Profile
 
 
Posted: 21 May 2008 06:57 AM   [ Ignore ]   [ # 2 ]
Newbie
Rank
Total Posts:  4
Joined  2008-05-19

turns out that it wouldn’t work with the {exp:freeform:form} tags outside the table.  artg

Profile