2010-moteur-site-simple/cms2/code/main.php
2010-10-11 00:03:14 +02:00

18 lines
234 B
PHP

<?php
function main() {
$bdd = BDD::get();
BDD::reset();
$g = new AdminListeUtilisateurs();
$p = $g->rendu();
echo "<pre>";
echo htmlspecialchars($p->to_XHTML_5());
echo "</pre>";
BDD::close();
Debug::afficher();
}
?>