Qui sont les auteurs des recueils retenus pour le projet 2007-2008 ?
Par Corinne Prigent, mercredi 17 octobre 2007 à 15:57 :: Auteurs :: #148 :: rss ?> ::
Gros plan sur... Jean-Michel Espitallier, auteur de "En guerre".
class dcExtendedInfo { function getInfo($type='postcount') { global $con; switch($type) { case 'postcount': $query = 'SELECT count(*) as info from '.DB_PREFIX.'post where post_pub=1'; break; case 'commentcount': $query = 'SELECT count(*) as info from '.DB_PREFIX.'comment where comment_pub=1 and comment_trackback=0'; break; case 'tbcount': $query = 'SELECT count(*) as info from '.DB_PREFIX.'comment where comment_pub=1 and comment_trackback=1'; break; case 'viewcount': $query = 'SELECT SUM(nb_view) FROM '.DB_PREFIX.'post'; break; } $res = $con->select($query); if ($type == 'viewcount') { return($res->arry_data[0]['sum(nb_view)']); } else { return($res->arry_data[0]['info']); } } } ?>
Commentaires
Aucun commentaire pour le moment.
Ajouter un commentaire
Les commentaires pour ce billet sont fermés.