Ver Mensaje Individual
  #3 (permalink)  
Antiguo 19/08/2009, 21:35
Avatar de KuKoRo
KuKoRo
 
Fecha de Ingreso: julio-2009
Mensajes: 38
Antigüedad: 14 años, 9 meses
Puntos: 2
Respuesta: Error Imagen Dinamica con php (No se valida..)...

Prueba con esto
Código PHP:
<?php
session_start
();
$valoraleatorio=rand(1000000,9999999);
$_SESSION['tmp_num'] = $valoraleatorio;
$ancho=100;
$alto=30;
$imagen=imageCreate($ancho,$alto);
$amarillo=ImageColorAllocate($imagen,255,255,0);
ImageFill($imagen,0,0,$amarillo);
$rojo=ImageColorAllocate($imagen,255,0,0);
ImageString($imagen,5,25,5,$valoraleatorio,$rojo);
for(
$c=0;$c<=5;$c++)

  
$x1=rand(0,$ancho);
  
$y1=rand(0,$alto);
  
$x2=rand(0,$ancho);
  
$y2=rand(0,$alto);
  
ImageLine($imagen,$x1,$y1,$x2,$y2,$rojo);
}
Header ("Content-type: image/jpeg");
ImageJPEG ($imagen);
ImageDestroy($imagen);

?>
Index2.php

Código PHP:
<?php
session_start
();
?>
<html>
<head>
<title>Problema</title>
</head>
<body>
<?php //numeroaleatorio
if ($_SESSION['tmp_num']==$_REQUEST['numero']){
  echo 
"Ingresó el valor correcto";
  }else {
  echo 
"Número Incorrecto";
  }
?>
</body>
</html>