Issue
This Content is from Stack Overflow. Question asked by haji
I passing data from android to php by params buy
I cant receive my table name?
in activity :
RequestParams params = new RequestParams();
params.add("enname",objectShohada.getEnname());
MyHttpClient.get("Loaderimages.php", params, new AsyncHttpResponseHandler() {
@Override
public void onSuccess(int statusCode, Header[] headers, byte[] responseBody) {
list.clear();
ObjectShohada[] tempList = new Gson().fromJson(new String(responseBody), ObjectShohada[].class);
list.addAll(Arrays.asList(tempList));
adapter.notifyDataSetChanged();
//app.l(statusCode+"");
}
in php :
$name = $_REQUEST[$parms["enname"]];
$query = "SELECT * FROM '$name'";
Solution
This question is not yet answered, be the first one who answer using the comment. Later the confirmed answer will be published as the solution.
This Question and Answer are collected from stackoverflow and tested by JTuto community, is licensed under the terms of CC BY-SA 2.5. - CC BY-SA 3.0. - CC BY-SA 4.0.