Файл: news.php
Строк: 61
<?php
ini_set('display_errors', 'off');
header ("Content-type: text/html; charset=utf-8");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-cache, must-relative");
print '<?xml version="1.0" encoding="utf-8"?>';
print "<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">";
include "./ini.php";
mysql_query ("select * from bannedib WHERE ci='$ci' AND (ip = '".getenv(REMOTE_ADDR)."')and(browser = '".getenv(HTTP_USER_AGENT)."')");
if(mysql_affected_rows()!=0){include "b.php";}
$login = autorize();
if($login['fsize'] == "medium") { $fsize1 = ""; $fsize2 = ""; }
elseif($login['fsize'] == "small") { $fsize1 = "<small>"; $fsize2 = "</small>"; }
elseif($login['fsize'] == "big") { $fsize1 = "<big>"; $fsize2 = "</big>"; }
print "<title>".$lang['news']."</title><link rel="StyleSheet" type="text/css" href="style/0".$s.".css"></head><body>";
print "<div style="text-align: center">
<div class="contur_rek"><div class="header_rek">".$fsize1."Новости нашего чата".$fsize2."</div></div></div>";
print "<div style="text-align: left"><div class="contur"><div class="header">";
if($login) {
switch($mod) {
case 'view':
$q = @mysql_query("select * from `chat_news` where id='$newsid' and ci='$ci' order by id desc;");
$arr = @mysql_fetch_array($q);
print "".$fsize1."<small><u>Новость:</u> ".$arr['text']."
<br/><u>Сообщил новость:</u> ".$arr['otkogo']."</small>".$fsize2."";
break;
default:
$q = @mysql_query("select * from `chat_news` where ci='$ci' order by id desc;");
while($arr = @mysql_fetch_array($q)) {
print "".$fsize1."<a href="news.php?s=$s&ci=$ci&id=$id&pass=$pass&newsid=".$arr['id']."&mod=view">".$arr['title']."</a>".$fsize2."<br/>"; }
break;
}
if($mod)
print "<br/>".$fsize1."<a href="news.php?s=$s&ci=$ci&id=$id&pass=$pass">Новости</a>".$fsize2."";
print "</div></div><div class="contur_rek"><div class="header_rek">".$fsize1."<a href="./enter.php?s=$s&ci=$ci&id=$id&pass=$pass">".$lang['holl']."</a>".$fsize2."</div></div><br/>";
} else { print $lang['not_loged']; }
mysql_close();
ob_end_flush();
?>
</body></html>