7.4 to the go

This commit is contained in:
2022-12-19 20:26:14 +02:00
parent 6cd7b13db0
commit 924be6329b
237 changed files with 38764 additions and 89531 deletions
+13 -12
View File
@@ -1,15 +1,16 @@
<?php
# Admin Only Area
header('Content-Type: text/html; charset=windows-1251');
define('GAME',true);
include('_incl_data/__config.php');
include('_incl_data/class/__db_connect.php');
include('_incl_data/class/__user.php');
if( $u->info['admin'] > 0 ) {
$sp = mysql_query('SELECT * FROM `mults`');
while( $pl = mysql_fetch_array($sp) ) {
echo ''.$u->microLogin($pl['uid'],1).' ïåðåñå÷åíèå ñ '.$u->microLogin($pl['uid2'],1).' <br>';
}
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>';
}
?>