Sorry, dass ich mein Problem im Titel nicht genauer beschreiben kann )-;
Ich hab mir mal eine kleine Spielerei in PHP programmiert. Es handelt sich um ein dynamisch generiertes Bild, das anzeigt, wie oft meine Beiträge in Foren schon aufgerufen wurden. Zusätzlich speicher das script die jeweilige ip zum passenden aufruf ab. Nun habe ich das Problem, dass in meinem „Logfile“ ab und zu lücken auftauchen. Woran liegt das?
Hier mein Quellcode:
$file = fopen("zahl.dat","r"); if($file) { $anzahl = fgets($file,10); $anzahl = $anzahl; fclose($file); } $str = "Seit dem 29.5.07 gab es $anzahl Aufrufe meiner Posts"; $width = strlen($str); $width = $width \* 12; $height = 20; $font = 5; $image = imageCreate($width,$height); $yellow = imageColorAllocate($image,0,0,0); $orange = imageColorAllocate($image,255,100,0); $str\_x = ($width - (imageFontWidth($font) \* strLen($str))) / 2; $str\_y = ($height - imageFontHeight($font)) / 2; imageString($image,$font,$str\_x,$str\_y,$str,$orange); header('Content-Type: image/png'); imagePng($image); //imagePng($image,"image.png"); imageDestroy($image); $file = fopen("zahl.dat","w"); if($file) { $anzahl = $anzahl + 1; fputs($file,$anzahl); fclose($file); } ?\> ok.. ich gebs ja zu. An der Professionalität lässt sich noch arbeiten xD