// licznik
if($count!="1") //brak ciasteczka!
{
$file=fopen("stats/counter.dat", "r");
flock($file, 1);
$counter=fgets($file, 200);
flock($file, 3);
fclose($file);
$counter++; //zwiększenie liczby odwiedzin;
$file=fopen("stats/counter.dat", "w");
flock($file, 2);
fwrite($file, $counter);
flock($file, 3);
fclose($file);
}
else //ciasteczko istnieje!
{
$file=fopen("stats/counter.dat", "r");
flock($file, 1);
$counter=fgets($file, 200);
flock($file, 3);
fclose($file);
}
//echo "Liczba odwiedzin:
//$counter "; //wyświetlenie liczby na stronie;
?>
|
|
Menu |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Last modified:
$file="index.php";
$mt=filemtime("$file");
echo date("j-n-Y", $mt);
?>
|