Ver Mensaje Individual
  #2 (permalink)  
Antiguo 28/07/2002, 05:59
festeira
 
Fecha de Ingreso: julio-2002
Mensajes: 36
Antigüedad: 22 años, 7 meses
Puntos: 0
Re: hacer un mini-buscador

Con PHP y MySQl he creado un buscador. Primero inserté la base de datos en el servidor con PHPmyadmin, y después creé una página html de entrada de datos con formulario y unos archivos en php que procesan la información introducida por el usuario.

En html:
Código:
 <html>
<head>
<title>Buscador de CEDULAS</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<table width="100%" border="0" cellspacing="3" cellpadding="3">
  <tr> 
    <td> 
      BUSCADOR 
    </td>
  </tr>
  <form name="formulario" method="Post" action="buscanombre.php">
    <tr> 
      <td>POR CEDULA:</td>
      <td>
        nº de cedula
      </td>
      <td> 
        <input type="Text" size=12 name="numcedula" maxlength="35">
        </td>
      <td> 
        <input type="submit" value="Buscar por cedula" name="buscanombre">
        </td>
    </tr>
  </form>
</table>
</body>
</html>
en php:

en el siguiente mensaje ;)