通过循环处理表单值

时间:2011-04-25 18:23:36

标签: php

我的表单包含以下名称的字段

<input type="text" name="value[]">
<input type="text" name="value[]">
<input type="text" name="value[]">

在表单提交上,我需要运行查询并将每个提交的非空值存储到我的数据库中。我怎么做?我想我需要运行循环但不确定如何,尤其是避免空白字段提交。

1 个答案:

答案 0 :(得分:2)

foreach($_POST['value'] as $val)
{
   if($val != "")
   {
       //process query, $val will have the tag's value
   }
}