Me podrían ayudar????
Les dejo el código html, javascript y php.
Muchas gracias.
Código HTML:
<input class="campoFormulario2" type="text" id="hotel" name="hotel" placeholder="Escribe tu hotel" onkeyup="llenarListaHoteles()" onBlur="vaciarLista()" /> <div class="sugerencias" id="lista"></div> function nuevoAjax() { var xmlhttp=false; try { xmlhttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch(e) { try { xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } catch(E) { if (!xmlhttp && typeof XMLHttpRequest!='undefined') xmlhttp=new XMLHttpRequest(); } } return xmlhttp; } function llenarListaHoteles(){ var eleccionProvincia = document.getElementById("provincia").value; var ajax=nuevoAjax(); var pistaEscrita = document.getElementById("hotel").value; ajax.open("GET", "sugerencias.php?provincia="+eleccionProvincia+"&pista="+pistaEscrita, true); ajax.onreadystatechange=function() { if (ajax.readyState==4){ document.getElementById("lista").innerHTML=ajax.responseText; } else{ } } ajax.send(null); } function vaciarLista(){ document.getElementById("lista").innerHTML=''; } function elementoSeleccionado(){ var seleccion = this.innerHTML; document.getElementById("hotel").innerHTML = seleccion; }
Código PHP:
$provincia = $_GET["provincia"];
$pista = $_GET["pista"];
$consulta = mysql_query("SELECT provincia, hotel FROM hoteles WHERE provincia='$provincia' AND hotel LIKE '%$pista%'");
while($fila = mysql_fetch_array($consulta)){
echo'<div onClick="elementoSeleccionado()">'.$fila["hotel"].'</div>';
}