Kod: Kodu kopyalamak için üzerine çift tıklayın!
<?php
session_start();
$sifre = substr(md5(rand(0,999999999999)), -6); // Güvenlik kodu uzunluğu
if($sifre){
$_SESSION["gkodu"] = $sifre;
$width = 100; // Güvenlik kodu resmi genişliği
$height = 30; // Güvenlik kodu resmi yüksekliği
$resim = ImageCreate($width, $height);
$arka = ImageColorAllocate($resim, 255, 255, 255); // Güvenli kodu metin rengi
$rand = ImageColorAllocate($resim, rand(0,255), rand(0,255), rand(0,255));
ImageFill($resim, 0, 0, $rand);
ImageString($resim, 5, 24, 7, $_SESSION["gkodu"], $arka);
ImageLine($resim, 0, 19, 0, 19, $arka);
header("Content,type:image/png");
ImagePng($resim);
ImageDestroy($resim);
}
?>