如何将字符串数组发送到PHP?

时间:2018-03-09 11:57:24

标签: java php android

我想在我的android项目中执行相同的操作我该怎么办?

HTML:

<html>
<body>
        <form action="npost" method="post">
        <input type="checkbox" name="n1[]" value="1">
        <input type="checkbox" name="n1[]" value="2">
        <input type="checkbox" name="n1[]" value="3">
        </form>
</body>
</html>

腓:

$s1 = $_POST["n1"]; 

1 个答案:

答案 0 :(得分:0)

我个人解决这个问题的方法: 首先,将数组转换为json(Follow This

之后,将json作为普通字符串发送到php,然后使用json_decode($yourstring)将字符串转换为json文件。

读取json文件并循环遍历它以存储为数组。