Файл: modules/arbitration/del.php
Строк: 19
<?php
$title = 'Арбитраж | Удаление отзыва';
include_once($_SERVER["DOCUMENT_ROOT"].'/style/head.php');
$_GET['id'] = abs(intval($_GET['id']));
$q = $db->query("SELECT * FROM `arbitration` WHERE `id`='".$_GET['id']."'");
if(!isset($user['id']) or $user['level']<1){
error('У вас нет прав для просмотра данной страницы.');
}
if($q->num_rows==0){
error('Отзыва не существует.');
}
$otz = $q->fetch_assoc();
?>
<div class="title">
<a href="/arbitration/<?=$otz['id_us']?>">Арбитраж пользователя <?=nick($otz['id_us'])?></a>
|
Удаление отзыва
</div>
<div class="text">
Вы действительно хотите удалить данный отзыв:
<div class="quote">
Отзыв оставил: <?=nick($otz['id_author'])?><br/>
Пользователю: <?=nick($otz['id_us'])?><br/>
Текст отзыва:<br/>
<?=output($otz['text'])?><br/>
Время: <?=times($otz['time'])?><br/>
Тип: <?if($otz['type']==1){?><font color="green"><b>Положительный</b></font><?}else{?><font color="red"><b>Отрицательный</b></font><?}?><br/>
<a href="/files/arbitration/screen/<?=$otz['file']?>">Файл</a>
</div>
</div>
<?
include_once($_SERVER["DOCUMENT_ROOT"].'/stylefoot.php');
?>