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-Top10_Links.php",$PHP_SELF)) {
- Header("Location: index.php");
- die();
- }
-
- global $prefix, $dbi;
-
- $a = 1;
- $result = sql_query("select lid, title from ".$prefix."_links_links order by hits DESC limit 0,10", $dbi);
- while(list($lid, $title) = sql_fetch_row($result, $dbi)) {
- $title2 = ereg_replace("_", " ", $title);
- $content .= "<strong><big>·</big></strong> $a: <a href=\"modules.php?name=Web_Links&l_op=viewlinkdetails&lid=$lid&ttitle=$title\">$title2</a><br>";
- $a++;
- }
-
- ?>