Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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);
}
share|improve this question
What is the response you get from the server when you post information? – Araw Jan 19 at 14:08
null values are inserted into the database. The auto-increment goes up. – user1720683 Jan 19 at 15:19

closed as not constructive by j0k, Daij-Djan, Sankar Ganesh, Frank van Puffelen, Mark Linus Jan 19 at 16:25

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

Browse other questions tagged or ask your own question.