Initial commit for radiantrh project

This commit is contained in:
2025-12-07 08:36:26 +00:00
commit 6dc580b90b
3334 changed files with 2221683 additions and 0 deletions

13
Modele/Ouinon.php Executable file
View File

@@ -0,0 +1,13 @@
<?php
require_once 'Framework/Modele.php';
class Ouinon extends Modele {
public function getListe() {
$sql = 'SELECT "1" as code, "Oui" libelle
union SELECT "0" as code, "Non" libelle';
$liste = $this->executerRequete($sql);
return $liste->fetchAll(PDO::FETCH_ASSOC);
}
}