时间:2021-07-01 10:21:17 帮助过:10人阅读
本文实例讲述了php获取从html表单传递数组的方法。分享给大家供大家参考。具体如下:
将表单的各个元素的name都设置成同一个数组对象既可以以数组的方式传递表单值
html页面如下:
<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>
arrayformdata.php页面如下:
<?php $postedtags = $_POST['tags']; foreach ($postedtags as $tag){ echo "<br />$tag"; } ?>
总结:以上就是本篇文的全部内容,希望能对大家的学习有所帮助。
相关推荐:
PHP加密解密函数生成加密解密字符串
PHP中数据库实现更安全的永久登录、记住我的功能
PHP基于Ajax实现无刷新登录和退出
以上就是php如何获取从html表单传递的数组的详细内容,更多请关注Gxl网其它相关文章!