php-loging-with-sql
this project used to login in php form with sql database you must add your user and pass to sql whith the below command's
mysql -u root -p
CREATE DATABASE phplogin ; USE phplogin ;
CREATE TABLE IF NOT EXISTS accounts
(
id
int(11) NOT NULL AUTO_INCREMENT,
username
varchar(50) NOT NULL,
password
varchar(255) NOT NULL,
email
varchar(100) NOT NULL,
PRIMARY KEY (id
)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
INSERT INTO accounts
(id
, username
, password
, email
) VALUES (1, 'test', '$2y$10$SfhYIDtn.iOuCW7zfoFLuuZHX6lja4lF4XA4JqNmpiH/.P3zB8JCa', '[email protected]');
use the password encoded