Showing posts with label registration. Show all posts
Showing posts with label registration. Show all posts

Tuesday, May 31, 2016

User Registration and Login Script with PHP and MySQL

In this tutorial we will discuss about how to create user registration and login management system with PHP and MySQL in simple procedural way. user registration and login system is most important thing for any kind of web applications and session plays important role in this type of system, for that we have to use session, In this tutorial, we are going to use PHP sessions to keep user login status, here is live demo of this script or you can also download this script, so how to do it let’s see in detail.
User Registration and Login Script with PHP and MySQL
Read more »

Sunday, May 29, 2016

Ajax Registration Script using jQuery with PHP and MySQL

This tutorial will show you how to create Ajax Signup form with jQuery using PHP MySQL and PDO. this will also guide creating a simple registration form using BootStrap, in most of websites you might have seen a registration form which accepts data from users and store into MySQL database without page refresh, this tutorial will also cover an important jQuery Validation part, proper validation using jQuery and database connectivity using PHP, you can look at live demo and try it yourself from the given download link, let's take a look.
Ajax Registration Script using jQuery with PHP and MySQL
Read more »

Tuesday, May 10, 2016

Login Registration with Email Verification Forgot Password using PHP

In this tutorial post we have a simple login and registration script with email verification and forgot password recovery feature using PHP, I have used Object Oriented(OOP) approach with PDO to create this script you can also use MySQLi, Well to avoid fake registrations we need to verify a newly registered user with their email id, i have used here PHPMailer library to send emails which is awesome mailer library, you can set your gmail credentials and using gmail smtp(smtp.gmail.com) in PHPMailer you can try this script at your localhost server too, so download PHP email Verification Script and try it in your localhost server, lets see the code.
Login Registration with Email Verification, Forgot Password using PHP
Read more »

Saturday, May 7, 2016

PHP Login and Registration Script with PDO and OOP

In my previous tutorial i have explained that how to use OOP in PDO, and now in this tutorial I'm going to explain a login and registration script using PDO and OOP, we already have a tutorial on this topic but that was for beginners with MySQL, and this one is with PDO and OOP, as PDO is improved extension it's must be used, i have used here new PHP 5.5 Password Hashing API function that creates strong password, for hashing password you have to use PHP 5.5 latest version of PHP and we will also see how to hash passsword using this functions and maintaining a user sessions using OOP so let's see the tutorial.
PHP Login and Registration Script with PDO and OOP
Read more »