Created
February 10, 2017 19:29
-
-
Save KOUISAmine/ffc1ea7524727d32fb5fea58f2fcb278 to your computer and use it in GitHub Desktop.
Créer un formulaire de connexion en Php avec MySQLi / jQuery
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE IF NOT EXISTS user ( | |
user_id int(11) NOT NULL AUTO_INCREMENT, | |
username varchar(50) NOT NULL, | |
password varchar(50) NOT NULL, | |
PRIMARY KEY (user_id) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment