<?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-Total_Hits.php", $PHP_SELF)) {
Header("Location: index.php");
die();
}
global $nukeurl, $prefix, $startdate, $dbi;
$result = sql_query("SELECT count FROM ".$prefix."_counter WHERE type='total' AND var='hits'", $dbi);
$result = sql_fetch_row($result, $dbi);
$content = "<center><small>"._WERECEIVED."</small><br><b><a href=\"index.php?mod=Statistics\">$result[0]</a></b><br><small>"._PAGESVIEWS." $startdate</small></center>";
?>