<?php
/************************************************************************/
/* ViperWeb: Web Portal System */
/* =========================== */
/* */
/* Copyright (c) 2002 by Raptr & Godboko */
/* http://development.ea-hq.net */
/* */
/* 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. */
/* */
/* Based on PHP-Nuke found at http://www.phpnuke.org */
/************************************************************************/
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=\"index.php?mod=Web_Links&l_op=viewlinkdetails&lid=$lid&ttitle=$title\">$title2</a><br>";
$a++;
}
?>