php - Login problems in android: fields are returning empty -
i creating , android application our thesis. i'm finished app when started having problems login. fields accepting input when try toast it, sends me "fields empty" response when send data server. got stuck working on this, appreciated. this jsonparser class: public class jsonparser { static inputstream = null; static jsonobject jobj = null; static string json = ""; // constructor public jsonparser() { } // function json url // making http post or mehtod public jsonobject makehttprequest(string url, string method, list<namevaluepair> params) { // making http request try { // check request method if(method.equals("post"){ // request method post // defaulthttpclient defaulthttpclient httpclient = new defaulthttpclient(); httppost httppost = new httppost(url); httppost.setent...