Ver Mensaje Individual
  #1 (permalink)  
Antiguo 14/06/2010, 14:18
lesly_1
 
Fecha de Ingreso: junio-2010
Mensajes: 15
Antigüedad: 14 años, 6 meses
Puntos: 0
Sonrisa Codigo para action con dos paginas

hola amigos,

Quisiera saber que codigo me recomiendan colocar en el action para que funcione esta condición:


<?php
session_start();
if ($_POST['action'] == "checkdata") {
if ($_SESSION['tmptxt'] == $_POST['tmptxt']) {
header('Location: http://www.pagina.com/index_p.html/');

} else {
header('Location: http://www.pagina.com/index_b.html/');
}
exit;
}
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>CAPTCHA con PHP</title>
<meta name="description" content="CAPTCHA con PHP: ejemplo para demostrar la creacion de Captcha con PHP." />
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center" class="descdet">
<div class="bordeder">
<strong class="subder">Captcha con PHP </strong><br>
Ingresar el texto mostrado en la imagen <br>
<form action="<?php ?>" method="post">
<img src="captcha.php" width="100" height="30" vspace="3"><br>
<input name="tmptxt" type="text" size="30"><br>
<input name="btget" type="submit" class="boton" value="Verificar Codigo">
<input name="action" type="hidden" value="checkdata">
</form>
</div> </td>
</tr>
</table>
</body>
</html>




o si se puede de otra manera, igual se los agradecere. gracias de antemano