I have a field that can be multiple when user will add another data. Here's a screenshot:
Here's my html code
<tr>
<td>経歴(学歴)</td>
<td>
<div id="academic">
<select name="c_ac_year">
<option value="2019">2019</option>
<option value="2018">2018</option>
<option value="2017">2017</option>
</select>
<select name="c_ac_month">
<option value="January">January</option>
<option value="February">February</option>
<option value="March">March</option>
</select>
<input type="text" id="form-control" name="c_ac_desc">
</div>
<div id="new_chq"></div>
<a href="" class="add">Add</a>
</td>
</tr>
<tr>
When click add, another set of fields will be added. How will I save these data in the database in array form?
