| |
| |
 |
|
 |
 |
|
| |
|
if(!$_SESSION["visita"])
{
if(!file_exists("count.txt")){
$p=fopen("count.txt","w");
$count=0;
}else{
$p=fopen("count.txt","r+");
$count=fgets($p,30);
fseek($p,0);
}
$count++;
fputs($p,$count);
echo $count ;
fclose($p);
$_SESSION["visita"] = 1;
}
else
{
$file = file("count.txt");
echo $file[0];
}
?>
|
|
|
|
|