battles/admin/test.php

35 lines
991 B
PHP
Raw Normal View History

2018-01-28 16:40:49 +00:00
<?php
include '../config.php';
2018-03-03 18:52:22 +00:00
spl_autoload_register(function ($class_name) {
include '../classes/' . $class_name . '.php';
});
//include_once '../classes/n.php';
//include_once '../classes/nick.php';
//include '../functions.php';
//showinf_pers(10736,1);
//showinf_pers(10736);
2018-03-31 13:47:59 +00:00
#$row = db::c()->query('select * from `bank` WHERE owner=10929 OR owner=11221')->fetch_assoc_array();
#print_r($row);
#echo '<hr>';
#$row2 = db::c()->query('select * from `bank` WHERE owner=10929 OR owner=11221')->fetch_row_array();
#print_r($row2);
#echo '<hr>';
2018-03-01 14:51:01 +00:00
2018-03-31 13:47:21 +00:00
// Получить все...
2018-03-31 13:49:44 +00:00
$res = db::c()->query('SELECT * FROM inventory WHERE owner = 11263 AND dressed = 1');
2018-03-31 13:47:21 +00:00
// Последовательно получать в виде ассоциативных массивов
while (($data = $res->fetch_assoc()) !== null) {
print_r($data);
}
2018-03-01 17:52:26 +00:00
2018-03-03 19:18:26 +00:00
//echo n::show(11263)."<br>".n::show(11221)->geninf();
2018-03-03 19:17:22 +00:00
echo '<hr>';
echo nick::id(11263)->inf();
2018-03-03 19:17:22 +00:00
echo '<hr>';
echo nick::id(11263)->geninf(1);