Файл: exit.php
Строк: 26
<?php
error_reporting(0);
$k=trim($_GET['k']); include("key.php"); include_once("cnfg.php");
$str="";
if ($fl=@file("inc/barakatak.dat")) {
for ($i=0;$i<count($fl);$i++) {
list($p1,$p2,$p3,$p4,$p5,$p6,$p7)=split('^',trim($fl[$i]));
if ($p1<>$k) {$str.=$fl[$i];}
else {
include_once("freedata.php"); freedata($p1);
}
}
}
$f=@fopen("inc/barakatak.dat","w"); @fwrite($f,$str); @fclose($f);
$sid=trim($_GET['sid']);
$title="Successfully exit";
include("inc/ex_head.php");
echo("<div class="bmenu"><b>$title</b></div>");
echo("<p class="menu">You have been successfully exit..!!
Thank you for using our service.. You will be automatically redirected to our main page in a few seconds..!! click <a href="http://pranamoelya.co.de/wap/ftp.php?k=$k">here</a> if you are not redirected automatically..</p>");
include("inc/foot.php"); exit;
?>