Your IP : 18.117.10.207


Current Path : /home/church/www/comparefloridarates.com/
Upload File :
Current File : /home/church/www/comparefloridarates.com/recaptcha-image.php

<?php


$string_arr = array();

$im = imagecreatefrompng('images/nistri.png');
$x = 10;
$y = 7;


for ( $i = 0; $i < 4; $i++ ) {
    $number = mt_rand(0, 9);
    $string_arr[] = $number;
    
    $textColor = imagecolorallocate($im, $i*49, $i*3, $i*41);   //black text
    
    imagestring ($im, 5, $x, $y, $number, $textColor);
    $x += 13;
    if ( $y == 14 ) {
        $y = 0;
    }
    $y += 7;
    
}

@session_start();
$_SESSION['captcha'] = implode('',$string_arr);

header('Content-Type: image/png');

imagepng($im);
imagedestroy($im);

exit();
?>