Not signed in (Sign In)

Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.


    • CommentAuthorviane
    • CommentTimeNov 5th 2006
     
    Hello, I really need a text counter for my page, I have a mac, do you know where can I get it from and how to install it in my server??
  1.  
    If you are using php use this code.

    Make counter.txt with initial value 0 in it.

    <?php
    $file="counter.txt";
    $handle=fopen($file, "r");
    $hits=fread($handle,filesize("$file"));
    $hits+=1;
    fclose($handle);
    echo "$hits";
    $handle=fopen($file, "w");
    fwrite($handle, $hits);
    fclose($handle);
    ?>