WebbServerProg/www/public/Moment-3/dataBas/besökRäknare.php

11 lines
189 B
PHP
Raw Normal View History

2024-09-16 08:26:33 +00:00
<?php
$hit = 0;
if (file_exists("../../hit.dat")) {
$hit = file_get_contents("../../hit.dat");
}
$hit++;
file_put_contents("../../hit.dat", $hit);
echo "Antal användare: " . $hit;
2024-09-13 14:45:04 +00:00
?>