You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$request = $bdd->prepare("SELECT name, display_name, map FROM " . TABLE_MAPS . " WHERE display_name LIKE '%".$_GET['query']."%' OR name = '".$_GET['query']."'");
$array = array();
if ($request->execute()) {
while ($row = $request->fetch(PDO::FETCH_ASSOC)) {