<?php
/*
+--------------------------------------------------------------------------
| D4WStatsLittle v1.1.2 - Developers4Web Web Stats Software
| ==========================================================
| by Developers4Web.com
| D4WStatsLittle is a Trade Mark of Developers4Web
| Copyright Developers4Web 2005 - 2006. All rights reserved.
| English:
| http://stats-service.developers4web.com
| Español:
| http://www.developers4web.com
| ========================================
| optimized by Trio Solutions
| Dreamweaver Extensions and Web Development Components
| English:
| http://components.developers4web.com
| Español:
| http://componentes.developers4web.com
| ========================================
| Web: http://www.d4wstats.com
| Date: Tuesday, February 20, 2006
| Email: info (at) developers4web (dot) com
| License Type: D4WSTATSLITTLE is NOT Open Source Software and Limitations Apply
| Licence Info: /d4wstatslittle/license.txt
+--------------------------------------------------------------------------
*/
?>
<?php
require "_dbconn.inc.php";
require "common.inc.php";
////$web = str_replace("_",".",$_GET["web"]);
////$rs_domains = mysql_query("select count(id) as ct, domain from ".$tablename." WHERE domain<>'' AND domain<>'http://".$web."' group by domain", $link);
// init
$rs_domains = array();
if (file_exists(DATABASE_PATH.$tablename))
{
$fp = fopen (DATABASE_PATH.$tablename,"r");
while ($data = fgetcsv ($fp, 1000, ","))
if ($data[5] != '')
$rs_domains[$data[5]]++; // domain referer entries
fclose ($fp);
}
$total = array();
$month = array();
$day = array();
// update
foreach ($rs_domains as $item => $value)
$day[$item] += $value;
asort($total);
if (count($total) > 50)
$total = array_slice($total, count($total)-50);
asort($month);
if (count($month) > 30)
$month = array_slice($month, count($month)-30);
asort($day);
if (count($day) > 20)
$day = array_slice($day, count($day)-20);
$arr["total"] = $total;
$arr["month"] = $month;
$arr["day"] = $day;
$str = serialize($arr);
?>