1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 07:54:24 +03:00
ifhub.club/include/ajax/userAutocompleter.php
2008-09-21 06:36:57 +00:00

39 lines
977 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();
}
$sUser = trim($_POST['value']);
if ($sUser!='') {
$aUsers=$oEngine->User_GetUsersByLoginLike($sUser,10);
foreach ($aUsers as $oUser) {
echo('<li>'.$oUser->getLogin().'</li>');
}
}
?>