// // This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike License. // // To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/1.0/ // // or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. // // Francais (brouillon): http://creativecommons.org/projects/international/fr/translated-license // ////////////////////////////////////////////////////////////////////////////////////////////////////// // Espace administrateur // v0.1.0 include_once("head.php"); $debut = intval($_GET[debut]); $parpage = intval($_GET[parpage]); if(empty($parpage)) $parpage = 20; $liste = $journal->liste_tous($debut,$parpage); $total = $journal->nombre(); $page = '
Titre
Statut
Supprimer
Modifier
'; foreach($liste as $j) { $page.= '
'.$j[titre].'
'.$j[statut].'
Supprimer
Modifier
'; } $page.= '
"; page("Liste des journaux",$page); ?>