android volley post json ID and get result back from PHP server
问题 i am struggling to make this work, basically i get an id from previous activity using intent, now i want to send this id to server so it returns all the data associated with this id. javacode final String URL = "URL"; // Post params to be sent to the server HashMap<String, String> params = new HashMap<String, String>(); params.put("ID", "1"); JsonObjectRequest req = new JsonObjectRequest(URL, new JSONObject(params), new Response.Listener<JSONObject>() { @Override public void onResponse