Salve ragazzi,
vorrei implementare un codice di verifica casuale che formulo cosi:
Codice PHP:
<?PHP
header
("Content-type: image/png");
$cod1 = mt_rand(2,10000);
$cod2 = mt_rand(2,10000);
$cod = $cod1 . $cod2;

$back = "back.PNG";

$img1 = ImageCreateFromPNG($back);

$img2 = ImageCreate(100, 30);

$sfondo = ImageColorAllocate($img2, 0, 0, 0);
ImageColorTransparent($img2,$sfondo);

$black = ImageColorAllocate($img2, 0, 0, 0);
$red = ImageColorAllocate($img, 255, 0, 0);

ImageString($img2, 5, 16, 7, $cod, $black);
ImageLine($img2, 0, 11, 99, 11, $red);
ImageLine($img2, 0, 18, 99, 18, $red);
ImageCopyResized($img1, $img2, 0, 0, 0, 0, 100, 30, 100, 30);


ImagePNG($img1);
ImageDestroy($img1);
ImageDestroy($img2);
?>
e vorrei che questo codice si implementasse in una reigstrazione o 1 sistema di logi che ho preso da Qui .
Vi ringrazio anticipatamente ang.