lunes, junio 16

Ejemplo de formulario para consultar un registro en la tabla alumnos de la base de datos cursophp

<html>
<body>
<form action="consultarregistro.php" method="GET">
<table border=0>
<tr>
<td>Documento :</td><td><input type="text" name="documento"></td></br>
</tr>
<tr>
<td>Nombres :</td><td><input type="text" name="nombres"></td></br>
</tr>
<tr>
<td>Apellidos :</td><td><input type="text" name="apellidos"></td></br>
</tr>
<tr>
<td>Fecha Nacimiento:</td><td><input type="text" name="fechna"></td></br>
</tr>
<tr>
<td>Sexo :</td><td><input type="text" name="sexo"></td></br>
</tr>
<tr>
<td>Direccion :</td><td><input type="text" name="direccion"></td></br>
</tr>
<tr>
<td>Telefono :</td><td><input type="text" name="telefono"></td></br>
</tr>
<tr>
<td>e-mail :</td><td><input type="text" name="email"></td></br>
<td><input type="submit" />
</tr>
</table>
</form>
</body>
</html>

No hay comentarios: