I have input sets with same names, and i need to submit thems to same action. When i try to submit that forms, only one form is posted.
Like this:
<form id="form1" name="form1" action="aaa.php" method="post">
<input type="hidden" name="id_product" value="2"/>
<input type="hidden" name="add" value="1" /> </form>
<form id="form2" name="form2" action="aaa.php" method="post">
<input type="hidden" name="id_product" value="3"/>
<input type="hidden" name="add" value="1" /> </form>