Jump to content

problems with hit counter code


sharmeen

Recommended Posts

Hi all,

Below is the code I used for counting the number of hits on my website. I have been using this code successfully in windows environment. However, while using the same code in Linux, this code does not work. Can anyone please help!!

 

 

<?php

$count_my_page = ("hitcounter.txt");

$hits = file($count_my_page);

$hits[0] ++;

$fp = fopen($count_my_page , "w");

fputs($fp , "$hits[0]");

fclose($fp);

?>

 

 

Best regards,

sharmeen

 

Link to comment
https://forums.phpfreaks.com/topic/86445-problems-with-hit-counter-code/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.