I am trying to get user_details from mysql to my android applicaion. For this I am posting data from android and getting the values by $_POST['mobile']
and $_POST['usertype']
method in my php page. To check if data is posting or not I have tried an insert statement first by below
//this works
$mobile = $_POST['mobile'];
$usertype = $_POST['usertype'];
sql = "INSERT INTO etc(id, etc) VALUES('$mobile', '$usertype')"
and it is working fine that means my post method is sending data. But when I am trying to read data by using the posted value in where statement below it is not returing any data to my application
// this doesn't work
$mobile = $_POST['mobile'];
$usertype = $_POST['usertype'];
$sql = "SELECT * FROM users where mobile_number='$mobile' and user_type='$usertype'";
Again if I hardcoded the two variable like below and use the same it is returning data to my application
//this returning data to my application
$mobile = 1812043433;
$usertype = Driver;
$sql = "SELECT * FROM users where mobile_number='$mobile' and user_type='$usertype'";
what's wrong am i doing here
This is my php page
$mobile = $_POST['mobile'];
$usertype = $_POST['usertype'];
// Create connection
$con=mysqli_connect("**","***","**","**");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$sql = "SELECT * FROM users where mobile_number='$mobile' and user_type='$usertype'";
if ($result = mysqli_query($con, $sql))
{
$resultArray = array();
$tempArray = array();
while($row = $result->fetch_object())
{
// Add each result into the results array
$tempArray = $row;
array_push($resultArray, $tempArray);
}
echo json_encode($resultArray);
}
// Close connections
mysqli_close($con);
and this is my android where i am parsing
private void downloadJSON(final String urlWebService) {
class DownloadJSON extends AsyncTask<Void, Void, String> {
@Override
protected void onPreExecute() {
super.onPreExecute();
}
@Override
protected void onPostExecute(String s) {
super.onPostExecute(s);
// Toast.makeText(getApplicationContext(), s, Toast.LENGTH_SHORT).show();
// Toast.makeText(getApplicationContext(), s, Toast.LENGTH_SHORT).setText("Posting Bid");
try {
loadIntoListView(s);
} catch (JSONException e) {
e.printStackTrace();
}
}
@Override
protected String doInBackground(Void... voids) {
try {
URL url = new URL(urlWebService);
HttpURLConnection con = (HttpURLConnection) url.openConnection();
StringBuilder sb = new StringBuilder();
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(con.getInputStream()));
String json;
while ((json = bufferedReader.readLine()) != null) {
sb.append(json + "\n");
}
return sb.toString().trim();
} catch (Exception e) {
return null;
}
}
}
DownloadJSON getJSON = new DownloadJSON();
getJSON.execute();
}
private void loadIntoListView(String json) throws JSONException {
JSONArray jsonArray = new JSONArray(json);
String[] stocks = new String[jsonArray.length()];
for (int i = 0; i < jsonArray.length(); i++) {
JSONObject obj = jsonArray.getJSONObject(i);
//stocks[i] = obj.getString("name") + " " + obj.getString("price");
String driverid=stocks[i] = obj.getString("id");
String driverfname=stocks[i] = obj.getString("first_name");
String driverlname=stocks[i] = obj.getString("last_name");
String driveravator="url";
String driverratings="3.8";
/*
tvhiddendriverId.setText(driverid);
tvhiddendriverfName.setText(driverfname);
tvhiddendriverlName.setText(driverlname);
tvhiddendriverAvator.setText(driveravator);
tvhiddendriverRatings.setText(driverratings);*/
/*Inserting to SQLITE directly from here
this.deleteDatabase("ContactsDB");
ContactsDB db=new ContactsDB(this);
db.open();
db.createEntry(driverid,driverfname,driverlname,driveravator,driverratings);
db.close();
Toast.makeText(this, "saved to db", Toast.LENGTH_SHORT).show();
}
}