php 批量表单问题

html页面<formname="form"method="post"action="make_original_update.php"><inputtype="hidd... html页面
<form name="form" method="post" action="make_original_update.php">
<input type="hidden" name="new_id" value="123" /><input type="text" name="new_title" value="爱就爱" size="70" style="height:20px;" />
<input type="hidden" name="new_id" value="1asdfsd23" /><input type="text" name="new_title" value="爱sdfsdfasd就爱" size="70" style="height:20px;" />
<input type="submit" value="确定提交" style="width:80px; height:25px;">
</form>
//////////////////////////////////////

php 页面
for($i=0;$i<count($_POST["new_id"]);$i++)
{
if($_POST["new_id"][$i]!='')
{
$new_title=$_POST['new_title'][$i];
echo $new_title;
}
}

无法批量读取表单,错在什么地方了?
展开
 我来答
zillyh
2012-04-19 · 超过51用户采纳过TA的回答
知道小有建树答主
回答量:110
采纳率:0%
帮助的人:110万
展开全部
html页面
<form name="form" method="post" action="test.php">
<input type="hidden" name="new_id" value="123" /><input type="text" name="new_title[]" value="爱就爱" size="70" style="height:20px;" />
<input type="hidden" name="new_id" value="1asdfsd23" /><input type="text" name="new_title[]" value="爱sdfsdfasd就爱" size="70" style="height:20px;" />
<input type="submit" value="确定提交" style="width:80px; height:25px;">
</form>
php页面
<?php
print_r($_POST[new_title]);
?>
获取到的数据是一个数组,如果你不会操作数组再联系我。
追问
那么,我上面的问题应怎样改呢?
追答
new_title[]这个名后面加上中括号就可以把所有的同名表单通过post获取到一个数组里了
比如:
$new_title = $_POST[new_title];
这个$new_title就是你想要的所有表单数据了。
我不知道你想要什么效果,按你的代码给你改一下吧。

$new_title = $_POST[new_title];
$N = count($new_title);
$new_id = $_POST[new_id];
for($i=0;$i";//这里加了一个换行,要不然输出的结果都在一行里。
}
}
命运1660601799
2012-04-19 · TA获得超过322个赞
知道答主
回答量:840
采纳率:0%
帮助的人:278万
展开全部
你的 FOR 语句的 {} 大括号 哪去了?
追问
有大括号哗

for($i=0;$i<count($_POST["new_id"]);$i++)
{

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式