I want to perform same as bellow in my android project how can i do it?
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>
Php:
$s1 = $_POST["n1"];