1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
|
<?php
session_set_cookie_params(10800);
session_start();
$datei = fopen("counter.txt","r+");
$counterstand = fgets($datei, 10);
if($counterstand=="")
{
$counterstand=0;
}
if(!session_is_registered('counter_ip'))
{
$counterstand++;
rewind($datei);
fwrite($datei, $counterstand);
session_register('counter_ip');
}
echo $counterstand;
fclose($datei);
?>
|