Step 1: creat new file with name counterlog.txt. Step 2: Creat new file counter.php with information: <?php $viewss = file("counterlog.txt"); $views = $viewss[0]; $views++; $fp = fopen("counterlog.txt", "w"); fwrite($fp, $views); fclose($fp); ?> PHP: Step 3: upload 2 file on your host and CHMOD on counterlog.txt 777. Step 4: And you can includes this code to anyone(you need counter active). <?php include ("counter.php"); ?> PHP: Displays your counter by thi code : <?php print $views; ?> PHP: all information from T4VN.NET http://www.t4vn.net/tutorials/showtutorials/Simple-Hit-Counter.html