<?php session_start(); header("Content-type: image/png"); $_SESSION['captcha'] = rand(0001, 9999); $imagen = imagecreate(50,25); $fondo = imagecolorallocate($imagen, 0, 0, 0); $texto = imagecolorallocate($imagen, 255, 255, 255); imagestring($imagen, 10, 6, 5,$_SESSION['captcha'], $texto); imagepng($imagen); ?>