php获取从html表单传递数组的方法
时间:2021-03-27 09:32:32|栏目:PHP代码|点击: 次
本文实例讲述了php获取从html表单传递数组的方法。分享给大家供大家参考。具体如下:
将表单的各个元素的name都设置成同一个数组对象既可以以数组的方式传递表单值
html页面如下:
<form method="post" action="arrayformdata.php"> <label>Tags</label> <input type="text" name="tags[]"/> <input type="text" name="tags[]"/> <input type="text" name="tags[]"/> <input type="text" name="tags[]"/> <input type="text" name="tags[]"/> <input type="submit" value="submit"> </form> </html>
arrayformdata.php页面如下:
<?php
$postedtags = $_POST['tags'];
foreach ($postedtags as $tag){
echo "<br />$tag";
}
?>
希望本文所述对大家的php程序设计有所帮助。
上一篇:PHP自定义递归函数实现数组转JSON功能【支持GBK编码】
栏 目:PHP代码
本文标题:php获取从html表单传递数组的方法
本文地址:http://www.codeinn.net/misctech/89333.html






