• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

How can i fix add this to my website:

RunarM

Finally back
Joined
Jul 17, 2008
Messages
1,636
Reaction score
34
Location
Norway/Tromsø
I want to add a counter to my website, how do i do that?

here is my Counter.php
PHP:
<? 
    $file = "counter.txt"; 
    if (!file_exists($file)) 
    { 
        touch($file); 
        $handle = fopen($file, 'r+'); 
        $str = "<? \$count=0 ?>"; 
    } 
    else 
    { 
        include "counter.txt"; 
        $count++; 
        $str = "<? \$count=".$count." ?>"; 
        $handle = fopen ($file, 'r+'); 
    } 

    fwrite($handle, $str); 
    fclose($handle); 
    
    echo 'Views: ';
    echo $count; 
?>

and here is the Counter.txt:
Code:
<? $count=0 ?>
 
Back
Top