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

11
lib/commonbis.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
function initDatabasemysqli() {
$mysqli = mysqli_connect("dwarves.iut-fbleau.fr", "bounnilo","YOYOYO","bounnilo");
if (!$mysqli) {
die("Erreur de connexion : " . mysqli_connect_error());
}
return $mysqli;
}