Просмотр файла moduls/notice.php

Размер файла: 1.28Kb
<?php
include_once'../system/xcms_core.php';$title='Оповещения';
if($_COOKIE['style']=='web')require_once '../system/web_head.php'; else require_once '../system/head.php';
if($user){
	$total=$db->query("select `id` from `notice` where `to`='$user[id]'")->rowCount();
	if($total){
		$k_page=k_page($total,$set['p_str']);$page=page($k_page);$start=$set['p_str']*$page-$set['p_str'];
		$sql=$db->query("select * from `notice` where `to`='$user[id]' order by `time` desc limit $start, $set[p_str]");
		while($res=$sql->fetch(PDO::FETCH_ASSOC)){
			$w=$db->query("select `avatar` from `user` where `id`='$res[user]'")->fetch(PDO::FETCH_ASSOC);
			echo '<div class="menu">'.avatar($w['avatar']).' '.clock($res['time']);
			if($res['status']==1){echo' <span style="color:red;">НОВОЕ</span>';$db->prepare("update `notice` set `status`='0' where `id`='$res[id]'")->execute();}
			echo'<br />'.$res['text'].'</div>';
		}
		if ($k_page>1){str('/notice/',$k_page,$page);}
	}else{echo'<div class="menu">У вас нет оповещений</div>';}
}else{echo'<div class="menu">Авторизуйтесь, чтобы просматривать эту страницу</div>';}
if($_COOKIE['style']=='web')require_once '../system/web_foot.php'; else require_once '../system/foot.php';
?>