Ver Mensaje Individual
  #36 (permalink)  
Antiguo 02/04/2021, 19:38
pilucho
 
Fecha de Ingreso: noviembre-2004
Ubicación: NULL
Mensajes: 652
Antigüedad: 19 años, 5 meses
Puntos: 6
Respuesta: live search php

Muchas Gracias Alexis88 ya funciona todo esta OK. te agregue puntos por la ayuda.

tengo una consulta, si quiero buscar en dos campos distintos usando uno para el nombre y otro para el email se tiene que modificar el PHP ? o hacer dos JS y PHP distintos?


Código HTML:
Ver original
  1.         <section>
  2.             <label>Buscar por nombre:</label>
  3.             <input type="search" name="buscar" autofocus />
  4.         </section>
  5.  
  6.         <section>
  7.             <label>buscar por email:</label>
  8.             <input type="search" name="buscar" autofocus />
  9.         </section>
  10.      
  11.         <section>
  12.             <label>Resultados seleccionados:</label>
  13.             <input type="text" name="nombre" readOnly />
  14.             <input type="text" name="apellido" readOnly />
  15.         </section>
  16.     </form>