User Registration and Login using PHP Oops Concepts | PHP Gurukul


 

In this tutorial we will learn how user can register and login using PHP Oops concepts.

File Structure for this tutorial :

  • index.php (User Registration form)
  • sigin.php (User signin form)
  • function.php (Database connection and function for username availability, registration, and login)
  • welcome.php (After login user will redirect to this page)
  • logout.php (for logout)

MySQL table tblusers structure used in this tutorial

Now creates a function.php. In this file class Class DB_con, Inside this class define the database connection.Now inside this create your function for username availability, user registration and login.

 

DB_con is the constructor function that will create localhost connection and database selection.

public function usernameavailblty () function has one parameter which will check the username availability.

public function registration() function have some parameter which will accept inputs from the HTML registration form.

public function signin() function will check the user username, the password is valid or not.

 

PHP Gurukul

Welcome to PHPGurukul. We are a web development team striving our best to provide you with an unusual experience with PHP. Some technologies never fade, and PHP is one of them. From the time it has been introduced, the demand for PHP Projects and PHP developers is growing since 1994. We are here to make your PHP journey more exciting and useful.

Website : https://phpgurukul.com

Comments

Popular posts from this blog

Pre-School Enrollment System using PHP and MySQL | PHP Gurukul

Global Food Ordering System Using PHP and MySQL | PHP Gurukul

Doctor Appointment Management System Using PHP and MySQL | PHP Gurukul