php获取从html表单传递数组的方法
更新时间:2015年03月20日 08:56:11 作者:work24
这篇文章主要介绍了php获取从html表单传递数组的方法,实例分析了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程序设计有所帮助。
相关文章
重新封装zend_soap实现http连接安全认证的php代码
重新封装zend_soap实现http连接安全认证,需要的朋友可以参考下。2011-01-01
PHP使用file_get_contents发送http请求功能简单示例
这篇文章主要介绍了PHP使用file_get_contents发送http请求功能,结合实例形式分析了file_get_contents结合stream_context_create实现的发送post请求数据相关原理与操作技巧,需要的朋友可以参考下2018-04-04


最新评论