Hello,
I am having an issue with a form. I have 1 form with multiple fieldsets and 1 submit button, when i submit the form, i am only receiving the last fieldset via email, the formhandler is the Level10 php form handler. I have used the handler about 5 time with no problems and It worked great with this form until I recoded it.
This is the basic setup of the form
Any thoughts?
I am having an issue with a form. I have 1 form with multiple fieldsets and 1 submit button, when i submit the form, i am only receiving the last fieldset via email, the formhandler is the Level10 php form handler. I have used the handler about 5 time with no problems and It worked great with this form until I recoded it.
This is the basic setup of the form
HTML:
<form class="mavpres" method="post" action="http://something.com/form/L10Apps/L10FmX.php">
<fieldset>
<ol>
<li>
<label></label><input />
</li>
</ol>
</fieldset>
<fieldset>
<ol>
<li>
<label></label><input />
</li>
</ol>
</fieldset>
<input type="submit" value="Submit!" name="submit" /> <input type="reset" value="reset" name="reset" />
</form>
Any thoughts?