Smiggle Chat Application (PHP)
#Configurations You will need to update the following on the database.php
$host = "localhost"; $user = "username"; $pass = "password"; $database = "database";
#Database with sample content
CREATE TABLE users (
user_id int(5) NOT NULL,
username varchar(25) NOT NULL,
email varchar(35) NOT NULL,
password varchar(50) NOT NULL
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
INSERT INTO users (user_id, username, email, password) VALUES
(1, 'ilsids', '[email protected]', '45edd741812abf42a7b799a6fc558d9c'),
(2, 'root', '[email protected]', '85a8bb0d8cb6c458642e3b488e6d2b56'),
(3, 'username', '[email protected]', '1a1dc91c907325c69271ddf0c944bc72'),
(4, 'user', '[email protected]', '5214cb51dc79e683d3359821448fc9c7'),
(5, '', '[email protected]', ''),
(6, '[email protected]', '[email protected]', '[email protected]'),
(7, '[email protected]', '[email protected]', '79593a6a3da24a4fef0ca26b8d655380');