I have the following form that has lots of similar type of input fields with same name (eg. 10 fields for 'name', 10 fields for 'address'). How many times these input fields will repeated, can not be said in prior and therefore they cannot be given static different names (eg. 'name1', 'name2', 'address1', 'address2').
Problem: while I am posting data using ajax post (serialized), its only posting the first value of fields with same name (received with php).
Required:
- How can I get all the input data posted properly?
- Whats the best way to name such input fields that contain similar data for the purpose of catching those data with php (form is generated in php)?
Sample code:
<form name="content">
<table>
<tr>
<td>
<input name="full_name" type="text" />
</td>
<td>
<input name="address" type="text" />
</td>
</tr>
<tr>
<td>
<input name="full_name" type="text" />
</td>
<td>
<input name="address" type="text" />
</td>
</tr>
</table>
</form>