1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 16:04:24 +03:00
ifhub.club/include/ajax/cityAutocompleter.php

39 lines
959 B
PHP

<?php
/*-------------------------------------------------------
*
* LiveStreet Engine Social Networking
* Copyright © 2008 Mzhelskiy Maxim
*
*--------------------------------------------------------
*
* Official site: www.livestreet.ru
* Contact e-mail: rus.engine@gmail.com
*
* GNU General Public License, version 2:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
---------------------------------------------------------
*/
/**
* Автоподстановка города
*/
set_include_path(get_include_path().PATH_SEPARATOR.dirname(dirname(dirname(__FILE__))));
chdir(dirname(dirname(dirname(__FILE__))));
require_once("./config/config.ajax.php");
header('Content-Type: text/html; charset=utf-8');
if (!isset($_POST['value'])) {
exit();
}
$sCity = trim($_POST['value']);
if ($sCity!='') {
$aCity=$oEngine->User_GetCityByNameLike($sCity,10);
foreach ($aCity as $oCity) {
echo('<li>'.$oCity->getName().'</li>');
}
}
?>