☜
☞
SQL
To run the script, you need the MySQL script below. Create a database and run the below MySQL script.
CREATE TABLE `user` (
`id` int(10) NOT NULL AUTO_INCREMENT PRIMARY KEY,
`fName` varchar(150) NOT NULL,
`lName` varchar(150) NOT NULL,
`email` varchar(150) NOT NULL,
`password` varchar(150) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
File: PHP&MySQL.zip
☜
☞