home *** CD-ROM | disk | FTP | other *** search
- <?php
-
- /************************************************************************/
- /* PHP-NUKE: Web Portal System */
- /* =========================== */
- /* */
- /* Copyright (c) 2002 by Francisco Burzi */
- /* http://phpnuke.org */
- /* */
- /* This program is free software. You can redistribute it and/or modify */
- /* it under the terms of the GNU General Public License as published by */
- /* the Free Software Foundation; either version 2 of the License. */
- /************************************************************************/
-
- if (eregi("block-Sections_Articles.php", $PHP_SELF)) {
- Header("Location: index.php");
- die();
- }
-
- global $prefix, $dbi;
-
- $result = sql_query("SELECT artid, title FROM ".$prefix."_seccont order by artid DESC limit 0,10", $dbi);
- while(list($artid, $title) = sql_fetch_row($result, $dbi)) {
- $content .= "<strong><big>·</big></strong> <a href=\"modules.php?name=Sections&op=viewarticle&artid=$artid\">$title</a><br>";
- }
-
- ?>