Usage statistics since May 12, 2011
// Place the date start usage count here
$usage_count = 0; // This is incremented with each fgets
$fp = fopen ("./stats/download_users.txt", "r") or exit("Unable to open file for read");
while (!feof($fp))
{
if ($usage_count == 0)
{
echo "The software download count is ";
echo "";
echo fgets($fp);
echo "";
}
else
{
echo "and the last date of download: ";
echo "";
echo fgets($fp);
echo "";
}
$usage_count++;
}
fclose ($fp);
?>
include ("foot.html");
?>