form表单传递数组数据、php脚本接收的实例

下面小编就为大家带来一篇form表单传递数组数据、php脚本接收的实例。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧

通过数组传递表单数据,可以保存数据之间的业务属性关系,比如有很多Student,每隔Student都有姓名、年龄、性别、爱好等表单信息。提交表单后还需要针对每个student进行处理或者保存。这样肯定需要为每个student的这些属性表单建立起关联关系,一种方式是根据属性表单的name上加特殊标记进行识别,但是数组传递表单就能使表单数据更结构化。

例子如下:

<input type="hidden" value="张三"/> <input type="hidden" value="111111111"/> <input type="hidden" value="李四"/> <input type="hidden" value="222222222"/>

php代码:

<?php $msgInfos = $_POST['msginfo']; $phoneNums = $msgInfos['name']; // 为array(-=>张三,1=>李四) $phoneNums = $msgInfos['phonenum']; // 为array(0=>111111111,1=>222222222)

例一

<?php if(isset($_POST['submit'])){ $users = $_POST['user']; foreach($users as $key=>$val){ echo 'user ',$key,' = ',$val,'<br />'; } } ?> <form method="post"> zhangsan <input type="text" value="0" /><br /> lisi <input type="text" value="1" /><br /> wangwu <input type="text" value="2" /><br /> zhaoliu <input type="text" value="3" /><br /> <input type="submit" value="提交" /> </form>

例二

<form method="post"> <? for($i=0;$i<10;$i++){ ?> <input type="checkbox" value="<?=$i?>">test<?=$i?><br> <? } ?> <input type="submit"> </form> <?php <code>if(isset($_POST)){ foreach($_POST as $key => $val){ if(is_array($val)){ foreach($val as $v2){ echo "$v2<br>"; } } } } ?> </code>

以上这篇form表单传递数组数据、php脚本接收的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/eac17ba04f24e37d33e91b8110ed0e6d.html