(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_top.php")) { die("
Error: This file cannot be opened directly!
"); } global $dblink; $result = $dblink->get_list("SELECT id,title FROM memht_blog_posts WHERE enabled=1 ORDER BY hits DESC LIMIT 20"); foreach ($result as $row) { $bid = intval($row['id']); $btitle = outCode($row['title']); echo "
$btitle
"; } ?>