This commit is contained in:
Bounni Loubelo Benicia
2025-06-14 17:09:02 +02:00
parent 2c713bec54
commit 5289c6a7fd
32 changed files with 1474 additions and 0 deletions

10
lib/common.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
function initDatabase() {
$db = mysqli_connect("dwarves.iut-fbleau.fr", "bounnilo","YOYOYO","bounnilo");
if(!$db){
echo "Erreur de connexion";
}
return $db;
}