📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv3.demodesign.com.tr
📝
guvenlik.php
← Geri Dön
<?php session_start(); header ('Content-type: image/png'); $sifre = substr(md5(rand(0,999999999999)), -6); // Güvenlik kodu uzunluğu $_SESSION["gkod"] = $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["gkod"], $arka); ImageLine($resim, 0, 19, 0, 19, $arka); ImagePng($resim); ImageDestroy($resim); ?>
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula