ciao a tutti io ho un problema con il mio sito il codice funziona tutto ma la captcha non me la visualizza mi aiutate perfavore??
il codice php della captcha è questo
Codice PHP:
<html>
<head>
<title></title>
</head>
<body>
<?php
session_start
();
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");

function
_generateRandom($length=6)
{
$_rand_src = array(
array(
48,57) //digits
, array(97,122) //lowercase chars
// , array(65,90) //uppercase chars
);
srand ((double) microtime() * 1000000);
$random_string = "";
for(
$i=0;$i<$length;$i++){
$i1=rand(0,sizeof($_rand_src)-1);
$random_string .= chr(rand($_rand_src[$i1][0],$_rand_src[$i1][1]));
}
return
$random_string;
}

$im = @imagecreatefromjpeg("captcha.jpg");
$rand = _generateRandom(3);
$_SESSION['captcha'] = $rand;
ImageString($im, 5, 2, 2, $rand[0]." ".$rand[1]." ".$rand[2]." ", ImageColorAllocate ($im, 0, 0, 0));
$rand = _generateRandom(3);
ImageString($im, 5, 2, 2, " ".$rand[0]." ".$rand[1]." ".$rand[2], ImageColorAllocate ($im, 255, 0, 0));
Header ('Content-type: image/jpeg');
imagejpeg($im,NULL,100);
ImageDestroy($im);
?>
</body>
</html>
invece il codice della pagina dove dovrebbe comparire è questo
Codice HTML:
<html>
<body>
	<form id="form1" name="form1" method="post" action="esito.php">
<p>
	<label for="nome">Nome</label>
	<input type="text" name="nome" id="nome" />
</p>
<p>
	<label for="email">Email</label>
 	<input type="text" name="email" id="email" />
</p>
<p>
	<label for="messaggio">Messaggio</label>
	<textarea name="messaggio" id="messaggio" cols="45" rows="5"></textarea>
</p>
<p>
	 <input name="privacy" type="checkbox" id="privacy" value="1" />
	<label for="privacy">Accetti i termini della privcy... i tui dati non saranno divulgati</label>
</p>
<p>
    <label for="captcha">Digita il Codice di verifica</label>
    <input type="text" name="captcha" id="captcha" />
  	<img src="captcha.php" alt="captcha image">
</p>
<p>
 <input type="submit" name="submit" id="submit" value="Invia Messaggio" />
 </p>
</form>
</body>
</html>
ringrazio in anticipo