14.05.2003, 20:23
Als erstes musst du eine neue textdatei machen, sie heißt hier counterstand.dat und eine 1 oder 0 reinschreiben (die chmod code 777 werden benötigt)
danach folgt der eigentliche Counter
<?php
$filename = "counterstand.dat"; //hier die url zu ihrer Datei
$datafile = @fopen($filename , "r");
if ($datafile <=0)
{
echo "Ihre Textdatei exisitiert nicht oder ist kaputt!";
exit;
}
else
{
$content = fgets($datafile, "12");
fclose($datafile);
}
++$content;
echo $content;
$datafile = @fopen($filename , "w");
flock($datafile, "2");
fputs($datafile, $content );
flock($datafile, "3");
fclose($datafile);
?>
Beispiel hier
Dieser Counter hat NOCH keine Ip Sperre, Counter mit ip sperre wird folgen!
danach folgt der eigentliche Counter
<?php
$filename = "counterstand.dat"; //hier die url zu ihrer Datei
$datafile = @fopen($filename , "r");
if ($datafile <=0)
{
echo "Ihre Textdatei exisitiert nicht oder ist kaputt!";
exit;
}
else
{
$content = fgets($datafile, "12");
fclose($datafile);
}
++$content;
echo $content;
$datafile = @fopen($filename , "w");
flock($datafile, "2");
fputs($datafile, $content );
flock($datafile, "3");
fclose($datafile);
?>
Beispiel hier
Dieser Counter hat NOCH keine Ip Sperre, Counter mit ip sperre wird folgen!