php 通过POST传多个值 如何处理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 通过POST传多个值 如何处理相关的知识,希望对你有一定的参考价值。
php 通过POST传多个值 如何处理
传多个值?什么意思?表单的多个项吗?按个人理解来回答吧,把表单的name都用一个数组命名,例如名字用data[name],然后过去就任由你处理了 参考技术A 把传的值写成个数组吧 参考技术B 以数组的方式是比较好的 参考技术C 例子:1.html
<form method="post" action="abc.php">
地区一:<input type="text" name="location[]" size="10" value="">
地区二:<input type="text" name="location[]" size="10" value="">
地区三:<input type="text" name="location[]" size="10" value="">
地区四:<input type="text" name="location[]" size="10" value="">
<input type="submit" value="提交">
</form>
abc.php的内容:
<?php
print_r($_POST['location']);
?>
你会看见打印出来的是一个数组,因为这个使用的$_POST['location']已经是一个数组了,你在程序里面可以直接以数组的处理方式使用它。 参考技术D 四楼正解!
以上是关于php 通过POST传多个值 如何处理的主要内容,如果未能解决你的问题,请参考以下文章