php获取从html表单传递的数组功能实例
内容摘要
这篇文章主要为大家详细介绍了php获取从html表单传递的数组功能实例,具有一定的参考价值,可以用来参考一下。
对php获取从html表单传递的数组对此感兴趣的朋友,看看idc笔记做
对php获取从html表单传递的数组对此感兴趣的朋友,看看idc笔记做
文章正文
这篇文章主要为大家详细介绍了php获取从html表单传递的数组功能实例,具有一定的参考价值,可以用来参考一下。
对php获取从html表单传递的数组对此感兴趣的朋友,看看idc笔记做的技术笔记!将表单的各个元素的name都设置成同一个数组对象既可以以数组的方式传递表单值
/**
* php获取从html表单传递的数组
*
* @param
* @arrange 512-笔记网: www.idcnote.com
**/
<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";
}
?>
/*** 来自php教程(www.idcnote.com) ***/
注:关于php获取从html表单传递的数组功能实例的内容就先介绍到这里,更多相关文章的可以留意
代码注释