Home  >  Article  >  Backend Development  >  php获取从html表单传递数组的方法_php技巧

php获取从html表单传递数组的方法_php技巧

WBOY
WBOYOriginal
2016-05-16 20:20:001323browse

本文实例讲述了php获取从html表单传递数组的方法。分享给大家供大家参考。具体如下:

将表单的各个元素的name都设置成同一个数组对象既可以以数组的方式传递表单值

html页面如下:

arrayformdata.php页面如下:

<?php
$postedtags = $_POST['tags'];
foreach ($postedtags as $tag){
  echo "
$tag"; } ?>

希望本文所述对大家的php程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn