Файловый менеджер - Редактировать - /home/d46091/udyogaadhaar.net/blog-post/images/698279/captcha.php.tar
Назад
home/d46091/udyogaadhaar.net/captcha.php 0000644 00000000611 15026517472 0013664 0 ustar 00 <?php session_start(); $text = rand(10000,99999); $_SESSION["vercode"] = $text; $height = 25; $width = 65; $image_p = imagecreate($width, $height); $black = imagecolorallocate($image_p, 0, 0, 0); $white = imagecolorallocate($image_p, 255, 255, 255); $font_size = 14; imagestring($image_p, $font_size, 5, 5, $text, $white); imagejpeg($image_p, null, 80); ?>