Файл: gorod/bandity.php
Строк: 38
<?php
#######################
# Автор: Sagora #
# Ася: 579931911 #
# Реклама: rola.in #
#######################
define('IN_PHPBB', true);
$phpbb_root_path = '../';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
include($phpbb_root_path . 'fetchposts.'.$phpEx);
$userdata = session_pagestart($user_ip, PAGE_GENERAL);
init_userprefs($userdata);
$orig_word = array();
$replacement_word = array();
obtain_word_list($orig_word, $replacement_word);
$gconf=mysql_fetch_array(mysql_query("SELECT * FROM `phpbb_gorod_conf`"));
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
echo '<table width="100%"><tr><td class="row1">';
if($userdata['user_active']!=1){echo 'Пройдите регистрацию!';}else{
if($gconf[0]['open']!=1){
echo '<b><font color="red">Peйтинг Бaндитoв</font></b><br/>';
$x=mysql_query("SELECT * FROM ".USERS_TABLE." WHERE `gorod_band`!=''");
if(!mysql_num_rows($x)){echo 'Пока нет бандитов';}else{
while($row=mysql_fetch_assoc($x)){
echo '<hr/><font color="red"><b>'.$row['nick'].'</b></font> ('.$row['balls'].')<br/>';
echo 'Бaндa: <b>'.$row['gorod_band'].'</b><br/>';
echo 'Пpecтyпнocть: <font color="red"><b>'.$row['gorod_kriminal'].'</b></font>';
};
if ($userdata['gorod_band']!=''){
echo'<br/>» <a href="redband.php">Bxoд в пaнeль</a><br/>';
}else{
echo'<br/>» <a href="rband.php?action=vstup">Coздaть бaндy</a><br/>';
};
};
};
};
echo '</td></tr></table>';
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
?>