php获取从html表单传递的数组功能实例

前端之家收集整理的这篇文章主要介绍了php获取从html表单传递的数组功能实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
PHP获取从html表单传递的数组感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编两巴掌来看看吧!
将表单的各个元素的name都设置成同一个数组对象既可以以数组的方式传递表单值

/**
 * PHP获取从html表单传递的数组
 *
 * @param 
 * @arrange 512-笔记网: jb51.cc
 **/
<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>

To receive the array in a PHP script,we use the $_POST as
<?PHP
$postedtags = $_POST['tags'];
foreach ($postedtags as $tag){
	echo "<br />$tag";
}
?>
/***   来自编程之家 jb51.cc(jb51.cc)   ***/
原文链接:https://www.f2er.com/php/528416.html

猜你在找的PHP相关文章