将表单的各个元素的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