02/08/2010, 13:36
|
| | Fecha de Ingreso: agosto-2010
Mensajes: 6
Antigüedad: 14 años, 5 meses Puntos: 0 | |
Respuesta: Uso de variables en forms Ok, gracias Form1: Aqui solicito los primeros datos, Nombre, email, ciudad y telefono.
Código:
<form action="form2.php" method="post" id="formsolicitud" name="formsolicitud" onsubmit="return Validar(this)">
<table width="100%"><td><div align="center">Los campos que contienen * son necesarios</div></td></table>
<!--Primera fila de la tabla para el campo del nombre-->
<table width="98%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td><p>Nombre y Apellido</p></td>
<td><p class="Estilo1">*</p></td>
<td><label>
<input type="text" id="nombre" name="nombre" size="50"/>
</label></td>
</tr>
<tr>
<td><p>Correo Electronico</p></td>
<td><p class="Estilo1">*</p></td>
<td><label>
<input type="text" id="email" name="email" size="50"/>
</label></td>
</tr>
<tr>
<td><p>Ciudad</p></td>
<td><p class="Estilo1">*</p></td>
<td><label>
<input type="text" id="ciudad" name="ciudad" size="50"/>
</label></td>
</tr>
<tr>
<td><p>Telefono</p></td>
<td><p class="Estilo1">*</p></td>
<td><label>
<input type="text" id="telefono" name="telefono" size="50"/>
</label></td>
</tr>
<tr>
<td><p> </p></td>
<td><p><span class="Estilo1"></span></p></td>
<td><label>
<input type="submit" name="Submit" value="Siguiente">
<input type="reset" name="Submit2" value="Borrar">
</label></td>
</tr>
</table>
</form>
Form2: Aqui primero guardo en las variables los primeros datos y solicito los comentarios.
Código:
<?php
$nombre = $_POST['nombre'];
$email = $_POST['email'];
$ciudad = $_POST['ciudad'];
$telefono = $_POST['telefono'];
?>
<form method="post" action="form3.php">
<table width="100%"
<tr>
<td><p>Comentarios y observaciones</p></td>
<td><p class="Estilo1">*</p></td>
<td><label>
<textarea name="comentarios" cols="40" rows="5" id="comentarios"></textarea>
</label></td>
</tr>
<tr>
<td><p> </p></td>
<td><p><span class="Estilo1"></span></p></td>
<td><label>
<input type="submit" name="Submit" value="Enviar">
<input type="reset" name="Submit2" value="Borrar">
</label></td>
</tr>
</table>
</form>
|