gracias por responder petit89
tengo este codigo no he mostrado el mapa por que lo estoy probando con la conexion pero me dice que no se ha definido la variable query no se que tenga mal
Código PHP:
Ver original<?php
include "../conex.php";
$pattern = $_POST['pattern'];
$sql1 = "SELECT * FROM coordenadas WHERE titulo LIKE '".$pattern."%' or titulo LIKE '".$pattern."%';";
$query = $conexion->query($sql1);
}
?>
<?php if($query->num_rows>0):?>
<table class="table table-bordered table-hover">
<thead>
<th>titulo</th>
<th>cx</th>
<th>cy</th>
</thead>
<?php while ($r=$query->fetch_array()):?>
<tr>
<td><?php echo $r["titulo"]; ?></td>
<td><?php echo $r["cx"]; ?></td>
<td><?php echo $r["cy"]; ?></td>
</td>
</tr>
<?php endwhile;?>
<?php else:?>
<?php endif;?>
<!--<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Mapa</title>
<script src="http://maps.google.com/maps?file=api&v=3&key=ABQIAAAAp9wVclPicp2HGB4QNX-LLRTqx4D3bS478d-1w1nVZmw5mBzr_hTd8Hb4lXsLPv7hW7mRH6_tkUmJ3g" type="text/javascript"></script>
<script type="text/javascript">
-->
<body onLoad="load();" onunload="GUnload();">
<center>
<div align="center" id="map" style="height: 425px; width: 425px;">
<script src="/myopen/ojo/js/main.js"></script>
<form>
<input type="search" placeholder="Buscar" id="buscar" name="s">
<button type="submit" class="btn btn-default" ><i class="material-icons">search</i></button>
<div id="datos"></div>
</form>
</div>
</center>
</body>
</html>
este el js
Código Javascript
:
Ver originalfunction buscar(){
var pattern = document.getElementById('buscar').value;
var solicitud = new XMLHttpRequest();
var data = new FormData();
var url = '../php/busqueda.php';
data.append("pattern", pattern);
solicitud.open('POST',url, true);
solicitud.send(data);
solicitud.addEventListener('load', function(e){
var cajadatos = document.getElementById('datos');
cajadatos.innerHTML = e.target.responseText;
}, false);
}
window.addEventListener('load', function(){
document.getElementById('buscar').addEventListener('input', buscar, false);
}, false);
desde ya gracias