Add files via upload

This commit is contained in:
jfontaine35 2022-03-11 17:54:36 +01:00 committed by GitHub
parent 903ed5413c
commit 9481897339
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

16
mysql.php Normal file
View File

@ -0,0 +1,16 @@
<?php
$serveurBD = "192.168.150.213";
$nomUtilisateur = "root";
$motDePasse = null;
$baseDeDonnees = "Infos";
mysqli_connect($serveurBD,
$nomUtilisateur,
$motDePasse,
$baseDeDonnees);
// $connexionReussie = mysqli_select_db($baseDeDonnees);
echo "YES !";
// Et pour mettre fin à la connexion
mysqli_close();
?>