game/adminion/mults.php

17 lines
378 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)) {
echo $u->getLogin($pl['uid']) . ' пересечение с ' . $u->getLogin($pl['uid2']) . ' <br>';
2022-06-06 21:30:34 +00:00
}