Пример #1
0
function call_visitors_text()
{
    global $tool;
    include_once 'inc/functions/resort_tools.php';
    if (!user_has_access($tool)) {
        echo "Sorry, this page is restricted to ORKFiA Staff";
        include_game_down();
        exit;
    }
    $stats = new Count_visitors();
    ?>
<h2>Visitor statistics (<?php 
    echo $_SERVER['HTTP_HOST'];
    ?>
)</h2>
<table class="medium" cellspacing="0" cellpadding="0">
  <tr class="header">
    <th colspan="4">Overall</th>
  </tr>
  <tr class="subheader">
    <th>Type</th>
    <th>Date</th>
    <th>Type</th    >
    <td>#</td>
  </tr>
  <tr class="data">
    <th width="20%">First visit at </th>
    <td class="left" width="35%"><?php 
    echo $stats->first_last_visit("first");
    ?>
</td>
    <td width="20%">Visits today: </td>
    <td><?php 
    echo $stats->show_visits_today();
    ?>
</td>
  </tr>
  <tr class="data">
    <th>Last visit at </th>
    <td class="left"><?php 
    echo $stats->first_last_visit("last");
    ?>
</td>
    <td>Total visits: </td>
    <td><?php 
    echo $stats->show_all_visits();
    ?>
</td>
  </tr>
  <tr class="data">
    <th nowrap>Daily average (month) </th>
	<td class="left"><?php 
    echo $stats->average_visits_day(date("m"), date("Y"));
    ?>
</td>
	<td nowrap>Most  visits a day: </td>
	<td><?php 
    echo $stats->show_max_visited_day();
    ?>
</td>
  </tr>
</table>
<?php 
    echo $stats->stats_country();
    echo $stats->stats_totals();
    echo $stats->stats_top_referer(20);
    echo $stats->stats_monthly(date("m"), date("Y"));
    ?>

<?php 
}
Пример #2
0
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Show Visitors (test application)</title>
</head>
<body>
<h1>Visitor statistics (example)</h1>
<table width="480" border="1" cellspacing="2" cellpadding="2">
  <tr>
    <td width="20%">First visit at: </td>
    <td width="35%"><?php 
echo $stats->first_last_visit("first");
?>
</td>
    <td width="20%">Visits today: </td>
    <td><?php 
echo $stats->show_visits_today();
?>
</td>
  </tr>
  <tr>
    <td>Last visit at: </td>
    <td><?php 
echo $stats->first_last_visit("last");
?>
</td>
    <td>Total visits: </td>
    <td><?php 
echo $stats->show_all_visits();
?>
</td>
  </tr>