Like This Site? 
 
RSS Feed Follow Us 

on Twitter! Be Our Fan!

Simple Register-Login-Logoff System Using PHP

Share this post!
 Vote this!

First make a database and upload those tables into your database:

users.sql


CREATE TABLE `users` (

`id` INT( 50 ) NOT NULL AUTO_INCREMENT PRIMARY KEY ,

`username` VARCHAR( 15 ) NOT NULL ,

`password` VARCHAR( 15 ) NOT NULL ,

`email` VARCHAR( 50 ) NOT NULL

)   more...

0 comments:

Post a Comment