if(file_exists("\stat\stat.txt"))
{
if (!$p_file = fopen("\stat\stat.txt","w")) {
echo "Spiacente, non posso aprire il file miofile2.txt";
exit;
}
else
{
$numero=fgets("\stat\stat.txt",255);
$numero=$numero+1;
fputs("\stat\stat.txt",$numero);
fclose("\stat\stat.txt");
}
}
else
{
copy("".$initial."\lol.txt", "stat\stat.txt");
if (!$p_file = fopen("stat/stat.txt","w")) {
echo "Spiacente, non posso aprire il file miofile2.txt";
exit;
}
else
{
$numero=fgets("stat/stat.txt",255);
$numero=$numero+1;
fputs("\stat\stat.txt",$numero);
fclose("\stat\stat.txt");
}
}