Файл: billingjaj/cod.php
Строк: 15
<?php
///////////////////////////////
// by OTMOPO3OK //
//Site: http://wapsib.ru //
//icq: 8365085 //
//E-mail: nmt2206@yandex.ru //
///////////////////////////////
session_start();
$rand = rand(100000,999999);
$_SESSION['checkcod'] = $rand;
$im = imagecreate(45, 15);
$background_color = imagecolorallocate($im, 255, 200, 255);
$col = ImageColorAllocate($im,0,0,0);
ImageString($im,3,2,1,$rand,$col);
header('Content-Type: image/gif');
header('Cache-control: no-cache, no-store');
imagegif($im);
imagedestroy($im);
?>