game/adminion/mults.php

17 lines
393 B
PHP
Raw Normal View History

2022-06-06 21:30:34 +00:00
<?php
# Admin Only Area
const GAME = true;
include('_incl_data/__config.php');
include('_incl_data/class/__db_connect.php');
$u = User::start();
if (!$u->info['admin']) {
return;
}
$sp = mysql_query('SELECT * FROM `mults`');
while ($pl = mysql_fetch_array($sp)) {
2023-01-10 16:29:32 +00:00
echo '' . $u->microLogin($pl['uid'], 1) . ' пересечение с ' . $u->microLogin($pl['uid2'], 1) . ' <br>';
2022-06-06 21:30:34 +00:00
}