示例#1
0
文件: saida.php 项目: hexti/troncal
<?php

include_once '../includes.sys/ini.php';
include_once '../includes.sys/metodos.php';
include_once "DAO/MensagemDAO.php";
checkUserAuth(EXTERNAL_ROOT_PORTAL . '/index.php?error=true');
include_once '../head.php';
$DAO = new MensagemDAO();
//$DAO = new MensagemDAO();
if (!empty($_GET['cmd']) && $_GET['cmd'] == 'del') {
    $id = ValidateInteger(INPUT_GET, 'id');
    $retorno = $DAO->Deletar($id);
    if ($retorno == 1) {
        echo '<script language= "JavaScript">alert("Registro removido com sucesso");</script>';
        echo '<script language= "JavaScript">location.href="index.php";</script>';
    } else {
        print_r($retorno);
    }
}
?>
	<!-- topbar ends -->
		<div class="container-fluid">
		<div class="row-fluid">
				
			<!-- left menu starts -->
			<div class="span2 main-menu-span">
				<?php 
include_once 'menu.php';
?>
			</div><!--/span-->
			<!-- left menu ends -->