PHP Tutorial // User Registration w/ SQL
Produced By:
lifeg0eson666 on 01 Oct 2006
Tags: tutorialphpsqlmysql(more...)phpmyadminlgo666computersvideosexy(less)
Description: PLEASE CHECK OUT THE SECOND VIDEO OF (more...) THIS
A quick and easy user registration using php, sql and phpmyadmin.
For full size and source codes: http://www.neoblob.com/phpsquad/tuts/php/1/
SQL:
CREATE TABLE `user` (
`id` int(10) unsigned NOT NULL auto_increment,
`username` varchar(20) NOT NULL default '',
`password` varchar(50) NOT NULL default '',
`email` varchar(40) NOT NULL default '',
`ip` varchar(20) NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; (less)
Episode 27: Cross Site Scripting
Added on: 09 Oct 2007
Tags:
Description: Another common security issue is cross (more...) site scripting. In this episode you will see why it is so important to escape any HTML a user may submit. (less)
Rails - how to customize Field Error
Added on: 02 Oct 2007
Tags:
Description: Learn how to customize Field Error in (more...) this video. When a validation error occurs, Rails helpfully wraps the field in a div tag so you can style it. But sometimes you don't want this behavior. (less)