Last active
February 10, 2017 19:40
-
-
Save KOUISAmine/7d85289b85756901f16d3a829dd01781 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
<?php | |
$conn = new mysqli('localhost', 'root', '', 'connexion'); | |
if($conn->connect_error){ | |
die("Erreur: Impossible de se connecter à la base de données: ". $conn->connect_error); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment