I was able to validate user using similar methodology, but am having issues with the ability to POST a new user and password to the mysql database -- I checked the php and it is good, but also posted it below. I am able to connect to the database, and when I submit it just puts blank rows. Issue could be with the JSON, as I don't really understand that yet. Here is my java code, any suggestions to get me past this would be very helpful:
@Override
public void onClick(View v) {
// This is where we will be working
// create new default httpClient
httpclient = new DefaultHttpClient();
// create new http post with url to php file as pararmenter
httppost = new HttpPost(
"http://smlelsyd.com/registerBBD.php");
// assign input text to strings
email = editTextEmail.getText().toString();
password = editTextEnterPassword.getText().toString();
password1 = editTextEnterPassword1.getText().toString();
// to make sure both password equal for registration
if (password.equals(password1)) {
// surround by try/catch
try {
// create new array list
nameValuePairs = new ArrayList<NameValuePair>();
// place them in an array list
nameValuePairs.add(new BasicNameValuePair("username", email));
nameValuePairs
.add(new BasicNameValuePair("password", password));
// add array list to http post
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
// assign executed form container to response
response = httpclient.execute(httppost);
// check status code,
if (response.getStatusLine().getStatusCode() == 200) {
// assign response entity to http entity
entity = response.getEntity();
// check if entity is not null
if (entity != null) {
// create new input stream with received data assigned
InputStream instream = entity.getContent();
// create new JSON object assign converted data as
// parameters
JSONObject jsonResponse = new JSONObject(
convertStreamToString(instream));
// assign json responses to locals strings
String retUser = jsonResponse.getString("user");// mySQL
String retPass = jsonResponse.getString("pass");
// validate login
SharedPreferences sp = getSharedPreferences(
"logindetails", 0);
// edit the shared preference
SharedPreferences.Editor spedit = sp.edit();
// put the login details as strings
spedit.putString("user", email);
spedit.putString("pass", password);
// close the editor
spedit.commit();
Intent intent = new Intent(CreateAccount.this,
MainActivity.class);
startActivity(intent);
}
// display a taost saying login was a success
Toast.makeText(getBaseContext(), "SUCCESS, THANKS",
Toast.LENGTH_SHORT).show();
}
} catch (Exception e) {
e.printStackTrace();
// display toast when there is a connection error
Toast.makeText(getBaseContext(), "ConnectionError",
Toast.LENGTH_SHORT).show();
}
} else {
// display a taost saying password didn't match
Toast.makeText(getBaseContext(),
"Passwords don't match, try again", Toast.LENGTH_SHORT)
.show();
}
}
private static String convertStreamToString(InputStream is) {
/*
* To convert the InputStream to String we use the
* BufferedReader.readLine() method. We iterate until the BufferedReader
* return null which means there's no more data to read. Each line will
* appended to a StringBuilder and returned as String.
*/
BufferedReader reader = new BufferedReader(new InputStreamReader(is));
StringBuilder sb = new StringBuilder();
String line = null;
try {
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return sb.toString();
}
}
and the PHP
//get form data
if(!isset($user)){
$user = strtolower(mysql_real_escape_string($_POST['user']));
}
if(!isset($pass)){
$pass = strtolower(mysql_real_escape_string($_POST['pass']));
}
//connect to MySQL
$connect = mysql_connect($dbhost, $dbuser, $dbpass)
or die ("connection error");
echo "connected ";
//select databse
mysql_select_db($dbdb) or die ("database selection error");
//check if user exists
$checkUser = mysql_query("SELECT * FROM androidlogin WHERE user = '$user'");
if(mysql_num_rows($checkUser) !=0){
$arrl = array("user" => "0");
die(json_encode($arrl));
}
//insert data
$insert = mysql_query("INSERT INTO androidlogin VALUES ('','$user','$pass')");
if($insert){
$arr2 = array("user" => $user, "pass" => $pass);
echo json_encode($arr2);
}