// // 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 // ////////////////////////////////////////////////////////////////////////////////////////////////////// // Liste des membres abonnés à un journal // v0.1.4 $requiredFiles = array("abonnements"); include_once("head.php"); if($_GET['supprimer']) $abonnements->supprimer($_GET['supprimer'],$journal->courant['id']); $liste = $abonnements->liste_journal($journal->courant['id']); if(count($liste) < 1) $page = "

Aucun membre n'est abonné à ce journal.

"; else { $page.= '

Il y a '.count($liste).' membre(s) abonnés à ce journal.

'; foreach($liste as $el) $page.= ' '; $page.= '
'.$el['pseudo'].' Annuler l\'abonnement
'; } page("Membres abonnés",$page); ?>