http get メソッド呼び出しを使用して java から php に変数値を渡す方法を知っていますが、get call を介して java から php に配列を渡す方法がわかりません。
HttpGet httpGet = new HttpGet("http://localhost/browserHistory.php?mobile_number="+mob+"&arr="+myArray);
HttpClient client = new DefaultHttpClient();
client.execute(httpGet);
私はこのようにphpで読み込もうとしています:
$history = $_GET["arr"];
$result = count($history);
echo ""+$result;
結果は常に 1 を出力します。