blob: b4078cb6f9508fbae4afd46738c604e0b877b4f5 [file] [log] [blame]
<?php
require_once($_SERVER['DOCUMENT_ROOT'] . "/projects/stats/hostname.php");
function get_last_date($handle){
$query = "SELECT stats_date FROM ".stats_table()." ORDER BY stats_date DESC LIMIT 1";
$result = mysql_query($query,$handle);
$row = mysql_fetch_assoc($result);
return $row['stats_date'];
}
?>