Learn To Make Simple PHP Login Registration Webpage...!

Simple PHP Registration Form

This a simple source code project to show how to create login and registration page using php and mysql, along with a simple template idea for making simple web application.

Code for forget password is not yet made , so it can be update later.

This project consists of:

Login Page.
Registration Page.
PHP Codes for login and registration.
Config file to connect with database (Edit according to your database).
Welcome page.

Easily understandable for newbie web developer. Can be customized as per your needs. Made as a website template so it is easy to understand how PHP website is structured.

Create Table using following query:


CREATE TABLE users
(
id INT PRIMARY KEY AUTO_INCREMENT,
username VARCHAR(30) UNIQUE,
password VARCHAR(30),
email VARCHAR(50)
);


Download: Source Code.


Previous
Next Post »