通过表单向php后台传多条数据,以关联数组方式呈现,废话不多说,代码附上:
html表单代码,方式我设置为get:
<form action="php/cart.php" method="GET"> <label for="mmm">数据1</label> <input type="text" name="cName[name1]" > <br> <label for="nnn">数据2</label> <input type="text" name="cName[name2]"> <br> <input type="submit" value="提交给cartphp"> </form>
php中的代码:
<?php $arr=$_GET['cName']; foreach($arr as $K => $V){ echo $K."的值为:".$V."<br>"; } ?>
因为是关联数组,所以for循环这里就用不了了,foreach才是遍历关联数组的关键。
其中的$K,$V分别是自己定义的键和值。
运行效果如下: