home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / akce / web / phpnuke / PHP-Nuke-7.5.exe / html / blocks / block-Total_Hits.php < prev    next >
PHP Script  |  2004-03-26  |  1KB  |  28 lines

  1. <?php
  2.  
  3. ########################################################################
  4. # PHP-Nuke Block: Total Hits v0.1                                      #
  5. #                                                                      #
  6. # Copyright (c) 2001 by C. Verhoef (cverhoef@gmx.net)                  #
  7. #                                                                      #
  8. ########################################################################
  9. # This program is free software. You can redistribute it and/or modify #
  10. # it under the terms of the GNU General Public License as published by #
  11. # the Free Software Foundation; either version 2 of the License.       # 
  12. ########################################################################
  13. #         Additional security & Abstraction layer conversion           #
  14. #                           2003 chatserv                              #
  15. #      http://www.nukefixes.com -- http://www.nukeresources.com        #
  16. ########################################################################
  17.  
  18. if (eregi("block-Total_Hits.php", $_SERVER['PHP_SELF'])) {
  19.     Header("Location: index.php");
  20.     die();
  21. }
  22.  
  23. global $nukeurl, $prefix, $startdate, $db;
  24.  
  25. $row = $db->sql_fetchrow($db->sql_query("SELECT count FROM ".$prefix."_counter WHERE type='total' AND var='hits'"));
  26. $content = "<font class=\"tiny\"><center>"._WERECEIVED."<br><b><a href=\"modules.php?name=Statistics\">$row[0]</a></b><br>"._PAGESVIEWS." $startdate</center></font>";
  27.  
  28. ?>