Add / Edit / List users

Its a simple tutorial, which explains Add / Edit / List functionalities. bottom of this tutorial has a link to download the zip file.

Zip File includes.

  1. registration.php
  2. registration_tpl.php
  3. userlist.php

CREATE TABLE `users` (
`userid` int(11) NOT NULL auto_increment,
`username` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
PRIMARY KEY (`userid`)
) AUTO_INCREMENT=1 ;

registration.php is the file to be called for three different actions namely INSERT,EDIT and LIST, Let me explain registration.php in three different steps.

step1: INSERT PART

step2: EDIT PART

Download

Comments

Leave a Reply