Skip to content

Instantly share code, notes, and snippets.

@KOUISAmine
Created February 10, 2017 19:29
Show Gist options
  • Save KOUISAmine/ffc1ea7524727d32fb5fea58f2fcb278 to your computer and use it in GitHub Desktop.
Save KOUISAmine/ffc1ea7524727d32fb5fea58f2fcb278 to your computer and use it in GitHub Desktop.
Créer un formulaire de connexion en Php avec MySQLi / jQuery
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