View Single Post
Go4Expert Member
10Sep2010,13:02  
PradeepKr's Avatar
I really doubt it worked.

PHP Code:
$Visits++ 
increments after it has already written the old count in the file. Hence no increment. Number would remain same.

change it to
PHP Code:
++$Visits