например етот код для
ГОСТЕВОЙ создайте любой fayl.php и скопируйте код туда
потом инклудите
<?php
if (!defined("BASEDIR")){header("Location:../index.php");exit;}
$total = 0;
$new = 0;
if (file_exists(BASEDIR."local/book.dat")){
$file = file(BASEDIR."local/book.dat");
$total = count($file);
for ($i = 0; $i < $total; $i++){
$data = explode("|", $file[$i]);
if (date("d.m.y") == date("d.m.y", $data[3])){$new++;}}}
echo '('.($new > 0 ? (int)$total.'/<font color="#FF0000">+'.(int)$new.'</font>': (int)$total).')<br>';
unset($total, $new, $file, $data, $i);
?>