You are here:About>Computing & Technology>PHP / MySQL> Step By Steps> Login PHP Script - Login PHP - Free Login PHP Script
About.comPHP / MySQL
Newsletters & RSSEmail to a friendSubmit to Digg

PHP Login Script

From Angela Bradley,
Your Guide to PHP / MySQL.
FREE Newsletter. Sign Up Now!

The Database

We are going to create a simple login system using PHP code on our pages, and a MySQL database to store our users information. We will track the users who are logged in with cookies.

Before we can create a login script, we first need to create a database to store users. For the purpose of this tutorial we will simply need the fields "username" and "password", however you can create as many fields as you wish.

CREATE TABLE users (ID MEDIUMINT NOT NULL AUTO_INCREMENT PRIMARY KEY, username VARCHAR(60), password VARCHAR(60))
This will create a database called users with 3 fields: ID, username, and password.
  1. The Database
  2. Registration Page 1
  3. Registration Page 2
  4. The Login Page 1
  5. The Login Page 2
  6. Members Area
  7. Logout Page

Previous | Next >>

 All Topics | Email Article | | |
Advertising Info | News & Events | Work at About | SiteMap | Reprints | HelpOur Story | Be a Guide
User Agreement | Ethics Policy | Patent Info. | Privacy Policy©2008 About, Inc., A part of The New York Times Company. All rights reserved.