//Define Variables $message = "This Page has been accessed for "; $font = "arial"; //font to use $font_size = "2"; //font size to use $color = "darkblue"; //font color to use $usebold = "yes"; //use bold?? "yes" or "no" //**************************************************************** // DON NOT EDIT BELOW THIS LINE //**************************************************************** $data = "count.txt"; function counter($data) { $fr = fopen("$data","r"); $count1 = fgets($fr,2000); fclose($fr); $fw = fopen("$data","w"); $new_count = ++$count1; print "$new_count"; fputs($fw,$new_count); fclose($fw); } if ($usebold == "yes") { $bold1 = ""; $bold2 = ""; } else { $bold1 = ""; $bold2 = ""; } ?>
|
|