game/mults.php

17 lines
437 B
PHP

<?php
# Admin Only Area
header('Content-Type: text/html; charset=windows-1251');
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->microLogin($pl['uid'], 1) . ' ïåðåñå÷åíèå ñ ' . $u->microLogin($pl['uid2'], 1) . ' <br>';
}