merhabalar
şöyle bir sorunum var
<?PHP
function olustur () {
$sifre = substr(md5(rand(0,999999999999)),-6);
if ($sifre) {
session_start();
$_SESSION["guv"] = $sifre;
$width = 100;
$height = 30;
$resim = ImageCreate($width,$height);
$beyaz = ImageColorAllocate($resim, 255, 255, 255);
$rand = ImageColorAllocate($resim, rand(0,255), rand(0,255), rand(0,255));
ImageFill($resim, 0, 0, $rand);
ImageString($resim, 5, 24, 7, $_SESSION["guv"], $beyaz);
header("Content,type: image/png");
ImagePng($resim);
ImageDestroy($resim);
}
}
olustur();
?>
burdaki "ImageCreate" fonksiyonu ımagecreate olarak algılıyor ve şöyle hatalar veriyor
FastCGI sent in stderr: "PHP Fatal error: Call to undefined function ımagecreate() in
guvenlik.php on line 9" while reading response header from upstream,
yani "ImageCreate" fonksiyonu imagecreate yazdığımda sorun vermiyor, böyle bir sorunum var :)
sadece bu kodlarda vermiyor vbulletin mesela kurulmuyor, vbulletindeki If leri ıf olarak algıladığından sorun veriyor
acaba nasıl düzeltebilirim bu sorunu. teşekkür ederim