View file bola/delete.php

File size: 586B
<?php
session_name("SID");
session_start();
include_once"../config.php";
include_once "../template/login2.php";

if (!$_SESSION[uin]=="" && !md5($_SESSION[par])=="" && md5($_SESSION[par])==$provpar && $_SESSION[uin]==$provuin)
{
		if ($bola==555)
		{

if(empty($uins)){$uins=$uin;}
$text = @file("../users/$uins.log");
@unlink ("../users/$uins.log");

if($action="delete"){
$text = @file("../users/$uins.log");
@unlink ("../users/$uins.log");
header('Location: del.php?'.SID.'');
}
}else{
		header("Location: ../index.php?".SID);
	}

}else{
header ("Location: ../index.php?".SID);
}

?>