我想在我的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"];
答案 0 :(得分:0)
我个人解决这个问题的方法: 首先,将数组转换为json(Follow This)
之后,将json作为普通字符串发送到php,然后使用json_decode($yourstring)
将字符串转换为json文件。
读取json文件并循环遍历它以存储为数组。