17 lines
382 B
PHP
17 lines
382 B
PHP
<?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)) {
|
|
echo User::getLogin($pl['uid']) . ' пересечение с ' . User::getLogin($pl['uid2']) . ' <br>';
|
|
}
|