Session Handling
Its a simple session handling tutorial, bottom of this tutorial has a link to download the zip file.
Its a continuation of user registration process.
Zip File includes.
- user_validation.php
- failure.php
- success.php
- login.html
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.






