我的表单包含以下名称的字段
<input type="text" name="value[]">
<input type="text" name="value[]">
<input type="text" name="value[]">
在表单提交上,我需要运行查询并将每个提交的非空值存储到我的数据库中。我怎么做?我想我需要运行循环但不确定如何,尤其是避免空白字段提交。
答案 0 :(得分:2)
foreach($_POST['value'] as $val)
{
if($val != "")
{
//process query, $val will have the tag's value
}
}