Esempio n. 1
0
//-------------------------
// programmer:	Jafarkhani
// Create Date:	95.03
//-------------------------
include '../header.inc.php';
require_once "traffic.class.php";
if (empty($_REQUEST["RequestID"])) {
    die;
}
$obj = new ATN_requests($_REQUEST["RequestID"]);
if (empty($obj->RequestID)) {
    die;
}
require_once '../../framework/baseInfo/baseInfo.class.php';
$Signer = BSC_posts::GetMissionSigner();
?>
<head>
	<meta content='text/html; charset=utf-8' http-equiv='Content-Type'/>
	<link rel="stylesheet" type="text/css" href="/generalUI/fonts/fonts.css" />
	<style>
		.page {
			width: 130mm;
			height: 190mm;
			border: 1px solid black;
			border-collapse: collapse;
			margin-top: 20px;
			font-family: nazanin;
			font-size: 14px;
		}
		.page td{
Esempio n. 2
0
function DeletePost()
{
    $obj = new BSC_posts($_POST["PostID"]);
    $res = $obj->Remove();
    echo Response::createObjectiveResponse($res, ExceptionHandler::GetExceptionsToString());
    die;
}