premier commit

This commit is contained in:
2025-11-01 19:50:25 +01:00
commit 296e6c2859
14 changed files with 91 additions and 0 deletions

10
test.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
require_once 'config.php';
$stmt = $pdo->query("SELECT * FROM utilisateur");
$users = $stmt->fetchAll(PDO::FETCH_ASSOC);
echo '<pre>';
print_r($users);
echo '</pre>';
?>