DarkSani80
Grünschnabel
PHP:
<?php
header("Content-type: image/gif");
$im = imagecreatefromgif("gstat.gif");
$textoc = "Found: 19";
$textgc = "Found: 100";
$texthidden = "Hidden: 3";
$textgesamt = "Total: 106";
// Farbe für den Text angeben.. Modus: R G B
$text_color = imagecolorallocate($im, 0, 0, 0);
// Angabe für Textgroesse und Position
imagestring($im, 2, 123, 4, $textoc, $text_color);
imagestring($im, 2, 123, 30, $textgc, $text_color);
imagestring($im, 2, 31, 4, $texthidden, $text_color);
imagestring($im, 2, 31, 30, $textgesamt, $text_color);
imagegif($im);
imagedestroy($im);
?>
ich glaube da ist auch ein programm fehler drin.
Für jede Hile bin ich sehr dankbar.
mfg dark