Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
172 views
Welcome To Ask or Share your Answers For Others

1 Answer

Nota: In response to your originally posted question/code without the added JS codes afterwards.

The added JS code should be posted as a new question. I have done a rollback to the originally posted question/code.


As per OP's request, comment to answer:

Change the +'s to . The + are JS concatenates, as opposed to PHP's equivalent being dots.

Plus, if $date isn't part of the folder name "totalviews",
change ../adminpanel/pagecounters/totalviews
to ../adminpanel/pagecounters/totalviews/


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...