<?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_referers = mysql_query("select count(id) as ct, (concat(domain,'/',path)) as referer from ".$tablename." WHERE domain<>'http://".$web."' AND domain<>'' group by domain,path", $link);
// init
$rs_referers = array();
if (file_exists(DATABASE_PATH.$tablename))
{
$fp = fopen (DATABASE_PATH.$tablename,"r");
while ($data = fgetcsv ($fp, 1000, ","))
if ($data[5].$data[6] != '')
$rs_referers [$data[5].$data[6]]++;
fclose ($fp);
}
$total = array();
$month = array();
$day = array();
// update
foreach ($rs_referers 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);
?>