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.
- registration.php
- registration_tpl.php
- 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

Comments
Leave a Reply






