| Current Path : /home/happyrenas/myreco.online/ |
Linux webd005.cluster105.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 |
| Current File : /home/happyrenas/myreco.online/hebergements_autocomplete.php |
<?
include("configuration.php");
include("includes/fonctions.php");
$term = $_GET['term'] ?? '';
$term = $db->escape($term);
$resultats = $db->get_results("
SELECT city, country_code
FROM heb_villes
WHERE city LIKE '%$term%'
ORDER BY city ASC
LIMIT 5
");
$suggestions = [];
foreach ($resultats as $r) {
$label = $r->city . ', ' . strtoupper($r->country_code);
$suggestions[] = $label;
}
echo json_encode($suggestions);?>