Showing posts with label registration system in php. Show all posts
Showing posts with label registration system in php. Show all posts

Tuesday, June 3, 2014

Login and Registration System in PHP and MySQL


For every websites in the Internet needs a form of security the most common security application that is being develop is login and registration system. Having a secured website is very important to insure that only the valid users are allowed to login and use the system. In this article I will show you how to create a login and registration system using PHP and MySQL.

This program is database driven we are using MySQL to save and retrieve the users records such information is the username,password, first name and last name of the user. One of the feature of the program is that I checks whether the username and password is already used by other user. I also added some features to validate invalid or erroneous values from our user. For the validation I use JavaScript to check for invalid entries and to minimize errors using the execution of our program. I also included an SQL dumb file for the creation of our database, tables and insertion of sample records.

I hope you will find my work useful in your programming projects and assignments using PHP and MySQL.

Thank you very much.




Sample Output of Our Program