Report this

What is the reason for this report?

Android Login and Registration With PHP MySQL

Published on August 3, 2022
Anupam Chugh

By Anupam Chugh

Android Login and Registration With PHP MySQL

Android Login and Registration are very common scenarios. You will find registration and login operation in all the apps where we want user information. In this tutorial, we’ll set up a local web server and MySQL database. We will develop android login and registration application. We will use PHP script to connect to the MySQL database.

Android Login Registration

The first step is to create the backend web server. I am working on Mac OS X and XAMPP can be used to set up a local Apache web server and MySQL database quickly.

Setting Up XAMPP Server

XAMPP(or WAMP) is a one-click installer software that creates an environment for developing a PHP, MySQL web application (that we’ll be connecting with our android application). Download and install XAMPP from here. Launch the XAMPP app after installation and you will be greeted with below screen. xampp application You can test your server by opening https://localhost. The following screen should appear. android xampp dashboard Also, you can check phpMyAdmin by opening https://localhost/phpmyadmin. Let’s see what it shows! android phpmyadmin error OOPS! You might end up with a screen like this. Seems like the MySQL server isn’t properly running. Go To the Manage Servers tab in the XAMPP application and click restart all. The servers should be running properly as seen in the image below. android xampp manage servers Now test phpMyAdmin in the localhost and you’ll end up with a screen similar to this. android phpmyadmin Now let’s test a sample php script. Create a new test.php file and add the following lines into it.

<?php
echo "Hello, World";
?>

In the above code:

  • ?php starts opening tag for any PHP script.
  • ?> means closing tag like closing bracket in Java.

Note: Knowing PHP is not mandatory for this tutorial. if you’re using a MAC then goto Applications->Xampp->htdocs. Create a new folder here lets say test_android and copy paste the test.php that was created before. Now open the url https://localhost/test_android/test.php You’ll end up with a screen like this: android php hello world

Setting Up MySQL Database

Open the phpMyAdmin by visiting https://localhost/phpmyadmin. Now select the Databases Tab that’s present in the top left of the headers row. Give a random name and create it. The newly created empty database would be visible in the left sidebar. android phpmyadmin database create Let’s create a users table in the newly created Database. Run the following query in the console

CREATE TABLE  `firstDB`.`users` (
    `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
    `username` VARCHAR( 20 ) NOT NULL ,
    `password` VARCHAR( 20 ) NOT NULL
)

If the table is successfully created, you’ll end up with a screen similar to this: android phpmyadmin create table

Connecting PHP to MySQL Database

To connect a PHP script to MySQL database three input values are required. Following are the inputs and there default values for a XAMPP server

  • Host name: localhost
  • MySQL user name : root
  • MySQL password : It is blank. “”

Let’s create a test-connect.php script and add it in the htdocs->test-android folder.

<?php
$host="localhost";
$user="root";
$password="";
$con=mysql_connect($host,$user,$password);
if($con) {
    echo '<h1>Connected to MySQL</h1>';
} else {
    echo '<h1>MySQL Server is not connected</h1>';
}
?>

mysql_connect() is a PHP’s inbuilt function to connect to MySQL database with the parameters listed above. Try running https://localhost/test_android/test-connect.php and see the output. If it’s not connected, then try restarting the XAMPP servers.

Android Login Registration App

Now that we’ve discussed the basic setup of PHP and MySQL, let’s get into the android login application part. We’ll be developing a sign-in/register application. To keep it short and simple we’ll be checking if the username and email are unique during registration. Before we jump onto the app logic let’s work on the PHP scripts and MySQL Database. First, let’s DROP the Table users and create a fresh one in the context of the above application.

CREATE TABLE IF NOT EXISTS `firstDB`.`users` (
`id` int(20) NOT NULL AUTO_INCREMENT PRIMARY KEY,
`username` varchar(70) NOT NULL,
`password` varchar(40) NOT NULL,
`email` varchar(50) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime DEFAULT NULL

)

Following are the PHP scripts that you can copy paste in the htdocs->test_android folder. config.php

<?php
    define("DB_HOST", "localhost");
    define("DB_USER", "root");
    define("DB_PASSWORD", "");
    define("DB_NAME", "firstDB");
    ?>

The script for Database connection is given below. db-connect.php

<?php
    
    include_once 'config.php';
    
    class DbConnect{
        
        private $connect;
        
        public function __construct(){
            
            $this->connect = mysqli_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME);
            
            if (mysqli_connect_errno($this->connect)){
                echo "Unable to connect to MySQL Database: " . mysqli_connect_error();
            }
        }
        
        public function getDb(){
            return $this->connect;
        }
    }
    ?>

The following script contains all the core functions of the application. user.php

<?php
    
    include_once 'db-connect.php';
    
    class User{
        
        private $db;
        
        private $db_table = "users";
        
        public function __construct(){
            $this->db = new DbConnect();
        }
        
        public function isLoginExist($username, $password){
            
            $query = "select * from ".$this->db_table." where username = '$username' AND password = '$password' Limit 1";
            
            $result = mysqli_query($this->db->getDb(), $query);
            
            if(mysqli_num_rows($result) > 0){
                
                mysqli_close($this->db->getDb());
                
                
                return true;
                
            }
            
            mysqli_close($this->db->getDb());
            
            return false;
            
        }
        
        public function isEmailUsernameExist($username, $email){
            
            $query = "select * from ".$this->db_table." where username = '$username' AND email = '$email'";
            
            $result = mysqli_query($this->db->getDb(), $query);
            
            if(mysqli_num_rows($result) > 0){
                
                mysqli_close($this->db->getDb());
                
                return true;
                
            }
               
            return false;
            
        }
        
        public function isValidEmail($email){
            return filter_var($email, FILTER_VALIDATE_EMAIL) !== false;
        }
        
        public function createNewRegisterUser($username, $password, $email){
              
            $isExisting = $this->isEmailUsernameExist($username, $email);
            
            if($isExisting){
                
                $json['success'] = 0;
                $json['message'] = "Error in registering. Probably the username/email already exists";
            }
            
            else{
                
            $isValid = $this->isValidEmail($email);
                
                if($isValid)
                {
                $query = "insert into ".$this->db_table." (username, password, email, created_at, updated_at) values ('$username', '$password', '$email', NOW(), NOW())";
                
                $inserted = mysqli_query($this->db->getDb(), $query);
                
                if($inserted == 1){
                    
                    $json['success'] = 1;
                    $json['message'] = "Successfully registered the user";
                    
                }else{
                    
                    $json['success'] = 0;
                    $json['message'] = "Error in registering. Probably the username/email already exists";
                    
                }
                
                mysqli_close($this->db->getDb());
                }
                else{
                    $json['success'] = 0;
                    $json['message'] = "Error in registering. Email Address is not valid";
                }
                
            }
            
            return $json;
            
        }
        
        public function loginUsers($username, $password){
            
            $json = array();
            
            $canUserLogin = $this->isLoginExist($username, $password);
            
            if($canUserLogin){
                
                $json['success'] = 1;
                $json['message'] = "Successfully logged in";
                
            }else{
                $json['success'] = 0;
                $json['message'] = "Incorrect details";
            }
            return $json;
        }
    }
    ?>

In the above code, the $json contains the JSONObjects returned. The following PHP script is the one that is called upon first from the application. index.php

<?php
    
    require_once 'user.php';
    
    $username = "";
    
    $password = "";
    
    $email = "";
    
    if(isset($_POST['username'])){
        
        $username = $_POST['username'];
        
    }
    
    if(isset($_POST['password'])){
        
        $password = $_POST['password'];
        
    }
    
    if(isset($_POST['email'])){
        
        $email = $_POST['email'];
        
    }
    
    $userObject = new User();
    
    // Registration
    
    if(!empty($username) && !empty($password) && !empty($email)){
        
        $hashed_password = md5($password);
        
        $json_registration = $userObject->createNewRegisterUser($username, $hashed_password, $email);
        
        echo json_encode($json_registration);
        
    }
    
    // Login
    
    if(!empty($username) && !empty($password) && empty($email)){
        
        $hashed_password = md5($password);
        
        $json_array = $userObject->loginUsers($username, $hashed_password);
        
        echo json_encode($json_array);
    }
    ?>

In the above code, we check whether the email field is empty or not. If it is, we’ll call the login function in the PHP script, else we’ll go to the registration function. The JSON response returns two params : success(0 or 1) and the message.

  • The md5() function uses the RSA Data Security, Inc. MD5 Message-Digest Algorithm to create a hash string of the password.
  • To check if the email address is a valid we’ve implemented a isValidEmail() method. FILTER_VALIDATE_EMAIL works on PHP versions 5.2.0+

Android Login Registration Project Structure

android login, android registration In this project, we’ve used three libs for implementing the HTTP Calls in our application. The JSONParser class is used for doing the POST and GET HTTP Calls to the localhost and returning the response in the form of a JSONObject.

Android Login Registration Code

The activity_main.xml layout is defined below.

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="https://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:fillViewport="true">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <LinearLayout
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:paddingLeft="24dp"
            android:paddingRight="24dp"
            android:id="@+id/linearLayout">

                <EditText android:id="@+id/editName"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:hint="Username"
                    android:textColor="#FF192133"
                    android:textColorHint="#A0192133"
                    android:fontFamily="sans-serif-light"
                    android:focusable="true"
                    android:focusableInTouchMode="true" />

                <EditText android:id="@+id/editPassword"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:inputType="textPassword"
                    android:textColor="#FF192133"
                    android:textColorHint="#A0192133"
                    android:fontFamily="sans-serif-light"
                    android:hint="Password"
                    android:focusable="true"
                    android:focusableInTouchMode="true" />

                <EditText android:id="@+id/editEmail"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:inputType="textEmailAddress"
                    android:textColor="#FF192133"
                    android:visibility="gone"
                    android:textColorHint="#A0192133"
                    android:fontFamily="sans-serif-light"
                    android:hint="Email"
                    android:focusable="true"
                    android:focusableInTouchMode="true" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/btnSignIn"
                android:text="SIGN IN"
                android:textStyle="bold"
                />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/btnRegister"
                android:text="REGISTER"
                android:textStyle="bold"
                />

        </LinearLayout>

    </RelativeLayout>

</ScrollView>

The MainActivity.java is given below.

package com.journaldev.loginphpmysql;

import android.content.Intent;
import android.content.SharedPreferences;
import android.graphics.Color;
import android.os.AsyncTask;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

import org.apache.http.NameValuePair;
import org.apache.http.message.BasicNameValuePair;
import org.json.JSONException;
import org.json.JSONObject;

import java.util.ArrayList;

public class MainActivity extends AppCompatActivity {


    EditText editEmail, editPassword, editName;
    Button btnSignIn, btnRegister;

    String URL= "https://10.0.3.2/test_android/index.php";

    JSONParser jsonParser=new JSONParser();

    int i=0;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        editEmail=(EditText)findViewById(R.id.editEmail);
        editName=(EditText)findViewById(R.id.editName);
        editPassword=(EditText)findViewById(R.id.editPassword);

        btnSignIn=(Button)findViewById(R.id.btnSignIn);
        btnRegister=(Button)findViewById(R.id.btnRegister);

        btnSignIn.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                AttemptLogin attemptLogin= new AttemptLogin();
                attemptLogin.execute(editName.getText().toString(),editPassword.getText().toString(),"");
            }
        });

        btnRegister.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {

                if(i==0)
                {
                    i=1;
                    editEmail.setVisibility(View.VISIBLE);
                    btnSignIn.setVisibility(View.GONE);
                    btnRegister.setText("CREATE ACCOUNT");
                }
                else{

                    btnRegister.setText("REGISTER");
                    editEmail.setVisibility(View.GONE);
                    btnSignIn.setVisibility(View.VISIBLE);
                    i=0;

                    AttemptLogin attemptLogin= new AttemptLogin();
                    attemptLogin.execute(editName.getText().toString(),editPassword.getText().toString(),editEmail.getText().toString());

                }

            }
        });


    }

    private class AttemptLogin extends AsyncTask<String, String, JSONObject> {

        @Override

        protected void onPreExecute() {

            super.onPreExecute();

        }

        @Override

        protected JSONObject doInBackground(String... args) {



            String email = args[2];
            String password = args[1];
            String name= args[0];

            ArrayList params = new ArrayList();
            params.add(new BasicNameValuePair("username", name));
            params.add(new BasicNameValuePair("password", password));
            if(email.length()>0)
            params.add(new BasicNameValuePair("email",email));

            JSONObject json = jsonParser.makeHttpRequest(URL, "POST", params);


            return json;

        }

        protected void onPostExecute(JSONObject result) {

            // dismiss the dialog once product deleted
            //Toast.makeText(getApplicationContext(),result,Toast.LENGTH_LONG).show();

            try {
                if (result != null) {
                    Toast.makeText(getApplicationContext(),result.getString("message"),Toast.LENGTH_LONG).show();
                } else {
                    Toast.makeText(getApplicationContext(), "Unable to retrieve any data from server", Toast.LENGTH_LONG).show();
                }
            } catch (JSONException e) {
                e.printStackTrace();
            }


        }

    }
}

That’s a pretty big code! Let’s draw the important inferences from the above code.

  1. https://10.0.3.2 is the localhost rerouting address. This address works exclusively if you’re using the Genymotion emulator. Use https://10.0.2.2 for the AVD Emulator which is much improved now. If you’re running the application on your own device using your computer’s WIFI address instead. Example: https://192.168.0.143.
  2. When the REGISTER Button is clicked we programmatically hide the SIGN IN Button and display the Email Address input text field instead.
  3. The AttemptLogin class executes the network HTTP requests to our localhost in the background. The username password and email parameters are added to an ArrayList that are passed in the method makeHttpRequest(URL, “POST”, params); of the JSONParser class.
  4. In the onPostExecute Method we display the message string returned from the server in a Toast message.

The JSONParser.java class is given below.

package com.journaldev.loginphpmysql;

import android.util.Log;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.client.utils.URLEncodedUtils;
import org.apache.http.impl.client.DefaultHttpClient;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;

/**
 * Created by anupamchugh on 29/08/16.
 */
public class JSONParser {

    static InputStream is = null;
    static JSONObject jObj = null;
    static JSONArray jArr = null;
    static String json = "";
    static String error = "";

    // constructor
    public JSONParser() {

    }

    // function get json from url
    // by making HTTP POST or GET mehtod
    public JSONObject makeHttpRequest(String url, String method,
                                      ArrayList params) {

        // Making HTTP request
        try {

            // check for request method
            if(method.equals("POST")){
                // request method is POST
                // defaultHttpClient
                HttpClient httpClient = new DefaultHttpClient();
                HttpPost httpPost = new HttpPost(url);
                httpPost.setEntity(new UrlEncodedFormEntity(params));
                try {
                    Log.e("API123", " " +convertStreamToString(httpPost.getEntity().getContent()));
                    Log.e("API123",httpPost.getURI().toString());
                } catch (Exception e) {
                    e.printStackTrace();
                }

                HttpResponse httpResponse = httpClient.execute(httpPost);
                Log.e("API123",""+httpResponse.getStatusLine().getStatusCode());
                error= String.valueOf(httpResponse.getStatusLine().getStatusCode());
                HttpEntity httpEntity = httpResponse.getEntity();
                is = httpEntity.getContent();

            }else if(method.equals("GET")){
                // request method is GET
                DefaultHttpClient httpClient = new DefaultHttpClient();
                String paramString = URLEncodedUtils.format(params, "utf-8");
                url += "?" + paramString;
                HttpGet httpGet = new HttpGet(url);

                HttpResponse httpResponse = httpClient.execute(httpGet);
                HttpEntity httpEntity = httpResponse.getEntity();
                is = httpEntity.getContent();
            }

        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

        try {
            BufferedReader reader = new BufferedReader(new InputStreamReader(
                    is, "iso-8859-1"), 8);
            StringBuilder sb = new StringBuilder();
            String line = null;
            while ((line = reader.readLine()) != null) {
                sb.append(line + "\n");
            }
            is.close();
            json = sb.toString();
            Log.d("API123",json);
        } catch (Exception e) {
            Log.e("Buffer Error", "Error converting result " + e.toString());
        }

        // try to parse the string to a JSON object
        try {
            jObj = new JSONObject(json);
            jObj.put("error_code",error);
        } catch (JSONException e) {
            Log.e("JSON Parser", "Error parsing data " + e.toString());
        }

        // return JSON String
        return jObj;

    }

    private String convertStreamToString(InputStream is) throws Exception {
        BufferedReader reader = new BufferedReader(new InputStreamReader(is));
        StringBuilder sb = new StringBuilder();
        String line = null;
        while ((line = reader.readLine()) != null) {
            sb.append(line);
        }
        is.close();
        return sb.toString();
    }
}

In the above code, we’re calling the respective classes HTTPPost or HTTPGet depending on the the second parameter that’s passed in the makeHttpRequest function.

jObj.put("error_code",error);

Above, we are appending the response status code returned from the server in the final JSONObject that’s returned to the MainActivity class. Note: Don’t forget to add the following permission in your AndroidManifest.xml file.

<uses-permission android:name="android.permission.INTERNET"/>

Many Users have posted their comments at the bottom of this tutorial, stating they’re getting “Unable to retrieve data” Toast. Please note that since Android 6.0 and above you need to add the following attribute in your application tag in the Manifest.xml file: android:usesCleartextTraffic="true" Why so? In order to allow the network security of the emulator/device to do http calls. Please check the output with the latest screengrabs from Android Q emulator below. Latest source code with the changes in the AndroidManifest.xml file is updated in the link and our Github Repository.

The output of the application in action is given below.

Android Registration User

In the below screengrab we register a new user and it gets added in the Database. We then login using the credentials we entered during registration.

Android Login With Php Mysql Final Output
Android Login With Php Mysql Final Output

This brings an end to the Android Login with PHP MySQL Tutorial. You can download the project from the link below. It contains the test_android folder too that holds the PHP files. Copy it into the xampp->htdocs folder! Good Luck.

Download Android Login Registration PHP MySQL Project

You can also access the full source code from our Github Repository below:

Github Project Link

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about our products

About the author

Anupam Chugh
Anupam Chugh
Author
Category:
Tags:
While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.

Still looking for an answer?

Was this helpful?

Thank u sir…its 100% correct…i got it…awesome codes

- Bibhuti

Where do i put the New Intent code to start a new activity after successful Login and Register??? PLZ HELP?

- Bibhuti

When I press Sign In or create account button it says" unable to retrieve data from server". Please help me to resolve it.

- Rose

Hey, thanks for you perfect tutorial … this was the most clear tutorial in the internet for me concerning login and registration in android! But one question: What is the best way to achieve that the new acitivty is only started after a successful login? If i am not mistaken, the new intent code should be inserted here: if (result != null) { Toast.makeText(getApplicationContext(),result.getString(“message”),Toast.LENGTH_LONG).show(); // Open startBildschirm Intent intent = new Intent(getApplicationContext(), XXXACTIVTYXXX.class); startActivity(intent); The problem is that the new activity is started in any case… Should I check if result.getString(‘message’) == “Sucessfull Login” -> start Intent or is there a better way? Thank you so much!

- Maper

How can I log out?

- Bruno

how i add verification code like whatsapp and other app verifies number how i add that source code in this code project please reply as soon as possible and help me for this coding.thanku

- aamrin

Sir First of all thank you very much … and secondly sir plz teach ma that… when i click sign in button then how to open a new activity form…

- Munawar

Hi Sir can i know what is the problem if the method of AttempLogin gives an error of it must be declared as abstract or implement abstract method ‘doInBackground(Params…)’ in ‘AsyncTask’ ?

- Cli

perfect!! thxxxxx best tutorial .

- yas

thank you, i am still facing challenges to an apple running on my phone to login on the mysql database, i have followed all the steps, i tried when i setup hostednetwork on my laptop failed, also i tried when am using home wireless where both my phone and laptop are connected to also failed. when i click on login button it shows no change.

- LUSAATA DENIS

When I press Sign In or create account button it says” unable to retrieve data from server”…i am running on my phone

- Andy

I’m facing some problem… Its not adding content to I he db neither buttons are working.pls help me

- Dev

I’m facing some problem… Its not adding content to the db neither buttons are working.pls help me pls.

- Dev

i cant get login it will registered me but when i press login its says invalid details …

- shabih

“unable to retrieve data from server” - I get E/JSON Parser: Error parsing data org.json.JSONException: Value <script of type java.lang.String cannot be converted to JSONObject. Seems like I’m getting HTML respnsone instead of JSON.

- lol

Hello is there a way to use web server such as 000webhost instead of xampp?

- Sarah Lee

hi , I m doing my final year MCA project on Canteen Automation System it will include two system i.e desktop application and android . i have developed android application in android studio and desktop in asp.net with C# and my database should be the common so that i can access same data from both mobile and desktop . can you please suggest which database i should use ?? i m very much confused between mysql and sql . your suggestion will help for me.

- Urvashi Sondagar

public class AttemptLogin extends AsyncTask { /// i have an error in this portion can you please help @Override protected void onPreExecute() { super.onPreExecute();

- Akhil ps

It is very useful tutorial…you have done great job with sharing knowledge with us…So i hope you will continue this…

- Dushantha

I am not able to anything. Neither Sign In nor Register. Whatever I am trying to do it says Incorrect details. However there is no any whitespace between data. email is in correct format, still i am unable to register.

- arjun

public class AttemptLogin extends AsyncTask { /// i have an error in this portion can you please help @Override protected void onPreExecute() { super.onPreExecute();

- Dushantha

hi sir, is it possible to connect it with a server

- fawaz

package com.login; import android.app.Activity; import android.content.ContentValues; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; import android.widget.Toast; import static android.R.attr.name; public class SignActivity extends Activity { TextView snam,pass,loc,con,uname; EditText enam,epass,email,econ,eunam; Button subtn; sqlite sq; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_sign); enam = (EditText) findViewById(R.id.sena); epass = (EditText) findViewById(R.id.sepas); email = (EditText) findViewById(R.id.semail); econ = (EditText) findViewById(R.id.secpas); eunam = (EditText) findViewById(R.id.seuna); subtn = (Button) findViewById(R.id.subtn); subtn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (enam.getText().toString().equals(“”)|| email.getText().toString().equals(“”)) { enam.setError(“field is empty”); } else { ContentValues conValue = new ContentValues(); conValue.put(“name”, enam.getText().toString()); conValue.put(“loc”, email.getText().toString()); conValue.put(“unam”, eunam.getText().toString()); conValue.put(“pass”, epass.getText().toString()); sqlite sqli = new sqlite(SignActivity.this); long i = sqli.insertAction(conValue, “login”); Toast.makeText(SignActivity.this, “successfully entered”+i, Toast.LENGTH_LONG).show(); enam.setText(“”); email.setText(“”); epass.setText(“”); econ.setText(“”); eunam.setText(“”); } } }); } }

- sam

Thanks a lot for the nice tutorial. Now how to put an intent to login to direct it to a new activity?

- Cédric

100% working but can u please give us logout activity also

- venkatesh

hello do i have to make any changes in code in php files? for eg dbconnect.php? mine is showing unable to retrive data from server! hope ull help?

- JUSTIN JOHN

The code works, but whenever I register a user, different password saves on the database. If I try to login, it says incorrect details though it is correct. What should I do?

- Grae

sir how can i get values from database to my activity???

- shahid Ali

great post so thanks because this post is so amazing.

- firefox mozilla not responding

loginphpmysql.iml thus it is required to put into the android project what is the use of that

- VJ

Hi, i am facing depreciation for defaultHttpClient which is being triked off in my code how can i resolve that issue.

- Akash

you forgot to see add library in android code and thats why main xml file is not created properly and in mani activity occur so many errors

- Akshay

Thank you for the amazing tutorial! Is it still recommended to use HttpClient ? if i wanted to use the URLConnecton what should i replace in the code? Thanks

- ghost

Hi sir…if i want to redirect after successful login then where should i put intent code means at which position…i tried but in that if user is not registered then also it will redirect activity…so please help to solve this problem.

- janki

Thanku for the post. But my users who are registered are not shown in mysql. Can u pls help me.

- Joe Paul

When i am click on the create account button i am getting message as “unable to retrieve the server” please help me to solve this problem

- Ashok

I want to set a role_id for admin and users how should I use them in both php and android. I planning to use with SharedPreferences but I don’t have much idea how it will fulfill please help

- Swanand Joshi

I want to read this article offline, how can i do that? Cause i’am not always connected to the internet. . .

- Joe Joe Oej

how to add registration by otp

- amit

Hi…I’m getting the “unable to retrieve any data from the server”… please help

- Mbulelo

HI. I Have done everything. I am able to login as well but I want one more function I would be glad if you help. After successful login I want to switch activity as well. ( From MainActivity to other activity.)

- Nirav

HI. I am using above mention codes. My application works fine only over my wifi but I am not able to use to from mobile network and other wifi networks. Please guide.

- Nirav

When I press Sign In or create account button it says” unable to retrieve data from server”…i am running on my phone

- bhagyashri

Hello there! Everything works perfectly. I have a question. How to check if the user is logged in already and then automatically redirected to the home page activity. Instead of logging every time I open the app. Thanks!

- johnlopev

i got this kind of error, help me please FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ‘:app:transformResourcesWithMergeJavaResForDebug’. > More than one file was found with OS independent path ‘META-INF/DEPENDENCIES’ * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

- Nur

Sir, Can i get the same procedure for fetching the database from mysql & php?

- Saqueeb Shariff

My application stops when i run it. It shows “com. Example. Login has stopped”. Checked for logcat and it shows error in onCreate method

- Saba

Why I can’t sign in? It says “Error in registering. Probably the username/email already exists.” The username and email is not the same from db. Help me please…

- Mim

In the onPostExecute() funtion. The “result” is unable save the data. Due to which it is executing “else” toast. I donot understand where i went wrong. Plz help

- Hamza Naeem

hello, i am new to this how do i create 2 types of user?

- ryan

Creative CommonsThis work is licensed under a Creative Commons Attribution-NonCommercial- ShareAlike 4.0 International License.
Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.