Failed to send parameter to PHP POST parameter android
I am currently using android volley and trying to select the product detail by sending the productID to get the detail data of the product. JSONObject params = new JSONObject(); try { params.put("ProductID", intent.getStringExtra("productID")); } catch (JSONException e) { e.printStackTrace(); } JsonObjectRequest detailReq = new JsonObjectRequest(Request.Method.POST, url, params, new Response.Listener<JSONObject>() { @Override public void onResponse(JSONObject response) { txtNama.setText(intent.getStringExtra("nama")); txtManufacturer.setText(intent.getStringExtra("namaVendor")); txtHarga