(GPLv2) or write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301, USA. ********************************************************************************/ if (stristr(htmlentities($_SERVER['PHP_SELF']), "block_archive_guide.php")) { die("
Error: This file cannot be opened directly!
"); } global $dblink; $result = $dblink->get_list("SELECT YEAR(data) AS year, MONTH(data) AS month, COUNT(id) AS tot FROM memht_guide WHERE enabled=1 GROUP BY year DESC ,month DESC"); foreach ($result as $row) { $year = intval($row['year']); $month = intval($row['month']); $tot = intval($row['tot']); echo "
".numToMonth($month)." $year ($tot)
"; } ?>