1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-02 22:45:02 +03:00
ifhub.club/include/ajax/userAutocompleter.php

39 lines
989 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__))));
$sDirRoot=dirname(dirname(dirname(__FILE__)));
require_once($sDirRoot."/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>');
}
}
?>