Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 15, 2019 04:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/3b84e70ff4d21ea04c89f60ccd2bbc75 to your computer and use it in GitHub Desktop.
Save parzibyte/3b84e70ff4d21ea04c89f60ccd2bbc75 to your computer and use it in GitHub Desktop.
<!--
Un formulario que únicamente permite buscar. Se envía
a este mismo script y se hace con GET
-->
<form action="listarPersonasConBusqueda.php" method="GET">
<!--
Fíjate en el atributo name="busqueda", pues esa variable
la estamos obteniendo de $_GET allá arriba
-->
<input type="text" placeholder="Buscar por nombre" name="busqueda">
<br>
<br>
<button type="submit">Buscar</button>
<br>
<br>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment