Просмотр файла postdel.php

Размер файла: 801B
<?php
include 'config.php';
include 'functions.php';
$news=$_GET['news'];
$news_id=news_gaga($news);
if (empty($news_id)) {
include 'head.php';
echo 'Такого сообщения не существует!<br/>'; exit($end); }
if ($pass==$admin_pass and !empty($_SESSION['rand']))
{
$_SESSION['rand']='';
$_SESSION['text']='';
$var='0';
$file=file ('news.dat');
$count=count($file);
for($i=0;$i<$count;$i++)
{
$ex=explode('#/#/#',$file[$i]);
if ($ex[0]==$news)
{
$string=str_replace($file[$i],'',file_get_contents("news.dat"));
$fopen=fopen("news.dat","w");
fputs($fopen,$string);
fclose($fopen);
$var='1';
}
}
if (!empty($var)) {
$_SESSION['text'].='Новость удалена!<br/>'; } else {
$_SESSION['text'].='Новость не удалена!<br/>'; } 
}
header("location:index.php");
?>