Muchas gracias nuevamente y perdón por las preguntas tan básicas lo que pasa es que soy nuevo en PHP.
Ya lo puse como me dijiste pero aún no logro hacerlo funcionar no se que estará pasando te pongo el código completo a ver si me puedes ayudar perdón tantas moelstias
Código PHP:
Ver original$db = new mysqli('xxxx', 'xxxx', 'xxxxx', 'xxxxx');
if(!$db) {
echo 'ERROR: Could not connect to the database.';
} else {
if(isset($_POST['queryString'])) {
$queryString = $db->real_escape_string($_POST['queryString']);
// Is the string length greater than 0?
$qry = "SELECT
Hotel,
Destino,
Estado,
Direccion
FROM Hoteles
WHERE
Hotel LIKE '%" . $queryString . "%'
OR Destino LIKE '%" . $queryString . "%'
OR Estado LIKE '%" . $queryString . "%'
UNION
SELECT
Hotel,
Destino,
Estado,
Direccion
FROM Pago
WHERE
Hotel LIKE '%" . $queryString . "%'
OR Destino LIKE '%" . $queryString . "%'
OR Estado LIKE '%" . $queryString . "%'";
$query = $db->query($qry);
if($query) {
// While there are results loop through them - fetching an Object.
// Store the category id
$Destino = 1;
while ($result = $query ->fetch_object() ) {
if($result->Destino != $Destino) { // check if the category changed
echo '<span class="category">'.htmlentities($result->Destino).'</span>';
$Destino = $result->Destino;
}
$Hotel = $result->Hotel;
$Hotel = substr($Hotel, 0, 35) . "..."; }
$HotelCat = $result->Categoria;
$Hotel = substr($Hotel, 0, 35) . "..."; }
echo '<a href="hotelInfo.php?id='.$result->id.'" class="link">';
echo '<span class="searchheading">'.htmlentities($Hotel).'</span>';
$Direccion = $result->Direccion;
$Direccion = substr($Direccion, 0, 40) . "..."; }
echo '<span>'.htmlentities($result->Direccion).'</span></a>';
}
echo '<span class="seperator"><a href="http://www.ofertaturistica.info" title="Sitemap">Nada interesante? Mapa de Sitio.</a></span><br class="break" />';
} else {
echo 'ERROR: There was a problem with the query.';
}
} else {
// Dont do anything.
} // There is a queryString.
} else {
echo 'There should be no direct access to this script!';
}
}