I have this code
<?php
error_reporting(E_ALL);
$date = date("F");
$count_my_page = ("../adminpanel/pagecounters/totalviews" + $date + ".txt");
$hits = file($count_my_page);
$hits[0] ++;
$fp = fopen($count_my_page , "w");
fputs($fp , "$hits[0]");
fclose($fp);
?>
But it doesn't seem to work, the error_reporting gives NO output and i have no idea what's the problem with it... Help?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…