首页 > 开发 > PHP > 正文

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

2024-05-04 23:33:01
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php获取从html表单传递数组的方法,实例分析了php操作表单元素的技巧,非常具有实用价值,需要的朋友可以参考下

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

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

html页面如下:

 

 
  1. <form method="post" action="arrayformdata.php"> 
  2. <label>Tags</label> 
  3. <input type="text" name="tags[]"/> 
  4. <input type="text" name="tags[]"/> 
  5. <input type="text" name="tags[]"/> 
  6. <input type="text" name="tags[]"/> 
  7. <input type="text" name="tags[]"/> 
  8. <input type="submit" value="submit"> 
  9. </form> 
  10. </html> 

arrayformdata.php页面如下:

 

 
  1. <?php 
  2. $postedtags = $_POST['tags']; 
  3. foreach ($postedtags as $tag){ 
  4. echo "<br />$tag"
  5. ?> 

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表