我有一个 html 表单,我在其中添加了一些元素,例如,当用户从列表中选择多个国家时,jquery 会遍历所选列表并为每个国家/地区创建一组表单字段。
假设用户选择了美国、中国和印度,那么将为每个国家创建表单字段,将 id asn 命名为 *countryName_indexValue, customeName_countryName_indexValue.*
我的问题: 当用户填写并点击提交按钮时,我需要通过 php 将此附加元素值提交到 mysql 数据库。我该怎么做?请帮我......
结果是这样的
<form>
<table>
<thead>
<tr>
<td>Country Name</td>
<td>Data01</td>
<td>Data02</td>
</tr>
</thead>
<!-- APPENDED ELEMENTS -->
<tbody>
<tr id="usa_0">
<td><input type="text" name="userCountry_usa_0" id="userCountry_usa_0"></td>
<td><input type="text" name="countryData01_usa_0" id="countryData01_usa_0"></td>
<td><input type="text" name="countryData02_usa_0" id="countryData02_usa_0"></td>
</tr>
<tr id="china_1">
<td><input type="text" name="userCountry_china_1" id="userCountry_china_1"></td>
<td><input type="text" name="countryData01_china_1" id="countryData01_china_1"></td>
<td><input type="text" name="countryData02_china_1" id="countryData02_china_1"></td>
</tr>
<tr id="india_2">
<td><input type="text" name="userCountry_india_2" id="userCountry_india_2"></td>
<td><input type="text" name="countryData01_india_2" id="countryData01_india_2"></td>
<td><input type="text" name="countryData02_india_2" id="countryData02_india_2"></td>
</tr>
</tbody>
</table>
</form>
谢谢..