![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
03/12/2009, 09:38
|
| | Fecha de Ingreso: octubre-2009
Mensajes: 125
Antigüedad: 15 años, 3 meses Puntos: 1 | |
Respuesta: Ayuda con checkbox para hacer diferentes acciones (tipo hotmail) si no quieres que se vea una el hidden en un formulario algo asi
<?
$id=$_POST['identificaion'];
?>
<html>
<head>
<title>My Page</title>
</head>
<body>
<form name="myform" action="recupe.php" method="POST">
<div align="center">
<input type="text" size="25" value="Enter your name here!">
<input type="hidden" name="id" value="<? echo $id ?>">
<br><br>
<input type="submit" value="Enviar">
// con eso estarias mandando el valor de id a recupe.php claro ahi falta el submit
</div>
</form>
</body>
</html> |