Depart a zero

This commit is contained in:
2025-12-07 09:35:13 +00:00
commit bbbcb96f64
3335 changed files with 2221682 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<?php
require_once 'Framework/Modele.php';
class Reponseententeprealable extends Modele {
public function getListe() {
$sql = 'SELECT codeReponseEntentePrealable as code, libelle FROM p_reponseententeprealable order by 1';
$liste = $this->executerRequete($sql);
return $liste->fetchAll(PDO::FETCH_ASSOC);
}
}