0 Yorum
Arkadaşlar bu yazımda php ile basit bir güvenlik kodu uygulaması yapacağız. İlk önce guvenlik.php dosyası yapalım. [php] <!–?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,... Devamını Oku