Call from android is as follows
CallWebServiceTask task = new CallWebServiceTask(6, this,
"Fetching Data From Server");
int key = 0;
for(int i = 0; i < localIds.size(); i++) {
key = localIds.keyAt(i);
// get the object by the key.
task.addNameValuePair("ids", ""+key);
}
task.execute(url);
This one will add a list of ids to the key ids.
On my php when I do, print_r($_POST); it returns just Array() as a string.
How, do I extract the array values in php in an array. Thanks.