I have some checkboxes. User selects some items. I have to send selected items (tags) to php mysql database and receive data (rows) back. Something like online search function.
So far in android:
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("tag[i]", tag));
JSONObject json = jParser.makeHttpRequest(url_search, "GET", params);
In php side:
I think I have to use array() with while and foreach methods. But no results yet.