(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_blog_categories.php")) { die("
Error: This file cannot be opened directly!
"); } global $dblink; $result = $dblink->get_list("SELECT c.id,c.name FROM memht_blog_posts AS p JOIN memht_blog_categories AS c ON p.category=c.id WHERE p.enabled=1 GROUP BY c.name ASC"); foreach ($result as $row) { $cid = intval($row['id']); $name = outCode($row['name']); echo "
$name
"; } ?>