File size: 1.68Kb
<?php
include'login.php';
$zag='Опции';
include'head.php';
include'del_ip.php';
print'<small>';
if($id==$admin || $status=='moder'){
if(!empty($mess)){
if(file_exists($mdir.'/'.$mess.'.mess')){
$file=file($mdir.'/'.$mess.'.mess');
$file=explode('#',$file[0]);
if(empty($act)){
@unlink($mdir.'/'.$mess.'.mess');
print'Выполнено';
} else {
if($act=='byname'){
$op=opendir($mdir);
while($read=readdir($op)){
if(is_file($mdir.'/'.$read) && ereg('[0-9]\.(mess$)',$read)){
$file2=file($mdir.'/'.$read);
$file2=explode('#',$file2[0]);
if($file2[0]==$file[0]){
@unlink($mdir.'/'.$read);}
}
}
closedir($op);
print'Выполнено';
}
if($act=='bysoft'){
$op=opendir($mdir);
while($read=readdir($op)){
if(is_file($mdir.'/'.$read) && ereg('[0-9]\.(mess$)',$read)){
$file2=file($mdir.'/'.$read);
$file2=explode('#',$file2[0]);
if($file2[5]==$file[5] && $file[6]==$file2[6]){
@unlink($mdir.'/'.$read);}
}
}
closedir($op);
print'Выполнено';
}
if($act=='all'){
if($id==$admin){
$op=opendir($mdir);
while($read=readdir($op)){
if(is_file($mdir.'/'.$read) && ereg('[0-9]\.(mess$)',$read)){
@unlink($mdir.'/'.$read);
}
}
closedir($op);
print'Выполнено';
} else {print 'У вас недостаточно прав!';}
}
}
} else {print 'Сообщения не существует!';}
} else {print 'Выберите сообщение!';}
} else {print 'У вас недостаточно прав!';}
print'
<br/>-----<br/>
<-<a href="./?id='.$id.'&ps='.$ps.'">Гостевая</a><br/>
<--<a href="../">Главная</a>';
print'</small>';
print $endwml;
?>