release 1.00

This commit is contained in:
Newcomer1989
2016-04-17 14:11:49 +02:00
parent 5429ffb819
commit 916cb41794
112 changed files with 14170 additions and 9797 deletions

View File

@@ -1,18 +1 @@
<?PHP
$q = strtolower($_GET["q"]);
if (!$q)
return;
require_once('config.php');
$dbuserlist = $mysqlcon->query("SELECT * FROM user ORDER BY online DESC");
$items = array();
$dbuserlist = $dbuserlist->fetchAll();
foreach ($dbuserlist as $userlist) {
$items[$userlist['name']] = $userlist['uuid'];
}
foreach ($items as $key => $value) {
if (strpos(strtolower($key), $q) !== false) {
$key=str_replace('|','&#124;',$key);
echo "$key|$value\n";
}
}
?>
<?php $q=strtolower($_GET["q"]);if(!$q)return;require_once('config.php');$dbuserlist=$mysqlcon->query("SELECT * FROM user ORDER BY online DESC");$items=array();$dbuserlist=$dbuserlist->fetchAll();foreach($dbuserlist as $userlist){$items[$userlist['name']]=$userlist['uuid'];}foreach($items as $key=>$value){if(strpos(strtolower($key),$q)!==false){$key=str_replace('|','&#124;',$key);echo "$key|$value\n";}}?>;