Hello all I am creating an android application and using HttpURLConnection Class. Here urlConn is object of HttpURLConnection class.
JSONObject jo = new JSONObject();
jo.put("name","xyz");
jo.put("email","xyz@abc.com")
I am sending this using..
OutputStreamWriter out = new OutputStreamWriter(urlConn.getOutputStream());
out.write(jo.toString());
out.close();
Now i want to fetch this data into php page that i have hosted online. So please tell me how to fetch JSONObject data in to php page.