test
continuous-integration/drone/push Build is passing Details

ServeurDeTest
nathan boileau 2 years ago
parent 019cc6754c
commit 4c69265925

@ -5,8 +5,11 @@ Autoload::charger();
$db = new Connection(); $db = new Connection();
$db->exec("INSERT INTO Utilisateur VALUES ('e','e','e', false)"); $db->exec("INSERT INTO Utilisateur VALUES ('e','e','e', false)");
$res = $db->exec('SELECT * FROM Utilisateur'); // Print out the entire list of people.
echo $res ; $res = $db->query('SELECT * FROM Utilisateur');
while ($row = $res->fetchArray(SQLITE3_ASSOC)) {
echo $row['email'] . "\n";
}
// $control = new FrontController(); // $control = new FrontController();

Loading…
Cancel
Save