What's going on my home page?
I have simple visitor counter, but now there's 1.2131214121312E+167 visitors on my site!
Here's the code I used:
So can anyone help?Code:<html> <head><title>Taikasilma.com</title> <link rel="stylesheet" type="text/css" href="tyylit.css"> </head> <body> <?php $myfile = "kavijat.txt"; if(file_exists($myfile)) { $var = fopen($myfile,'r+'); $visits = fgets($var); $visits+=1; fwrite($var, $visits); fclose($var); } else { print "<span class=\"p\"><b>Tiedostoa $myfile ei löydy...</b></span>"; die(); } print "<span class=\"o\">Kävijöitä tällä sivulla: $visits</span>"; ?> </body> </html>



Reply With Quote
What does the textfile have in it?


Bookmarks