| Server IP : 20.75.53.88 / Your IP : 216.73.217.72 [ Web Server : Apache System : Linux VMRALP-3 4.4.0-256-generic #290~14.04.1-Ubuntu SMP Thu Jun 20 09:24:50 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29+esm15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Domains : 3 Domains MySQL : ON | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/portais/controller/publicacao/ |
Upload File : |
<!DOCTYPE html>
<html lang="en">
<head>
<title>G&T Controller | Publicações</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Creative One Page Parallax Template">
<meta name="keywords"
content="Creative, Onepage, Parallax, HTML5, Bootstrap, Popular, custom, personal, portfolio"/>
<meta name="author" content="">
<title>G&T Controller</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/prettyPhoto.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script> <![endif]-->
<link rel="shortcut icon" href="images/ico/favicongt.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/ico/favicongt.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/ico/favicongt.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/ico/favicongt.png">
<link rel="apple-touch-icon-precomposed" href="images/ico/favicongt.png">
<script type="text/javascript" src="js/jquery.js"></script>
<script type='text/javascript' src="//ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<style type="text/css">
::-webkit-scrollbar {
width: 13px;
height: 13px;
}
::-webkit-scrollbar-button {
width: 0px;
height: 0px;
}
::-webkit-scrollbar-thumb {
background: #2f3192;
border: 0px none transparent;
border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
background: #00aeef;
}
::-webkit-scrollbar-thumb:active {
background: #00aeef;
}
::-webkit-scrollbar-track {
background: transparent;
border: 0px none transparent;
border-radius: 0px;
}
::-webkit-scrollbar-track:hover {
background: transparent;
}
::-webkit-scrollbar-track:active {
background: transparent;
}
::-webkit-scrollbar-corner {
background: transparent;
}
</style>
</head>
<body>
<?php
function __autoload($classe)
{
@include_once "be/{$classe}.php";
@include_once "dao/{$classe}.php";
@include_once "ext/{$classe}.php";
@include_once "{$classe}.php";
}
?>
<script src="ajax.js" type="text/javascript"></script>
<section id="publicacoes">
<div>
<div align="center">
<h2 class="title-one">Publicações de Relatórios Fiscais</h2>
</div>
<div class="col-md-3"></div>
<div class="col-md-12">
<h4><i></i></h4>
<div class="col-md-4"><b>UF</b>
<select class='form-control' name='cod_uf' onchange="combo('cod_cidade', 'selectcidades', this.value )">
<option>Selecione um Estado</option>
<?php
$ufs = new ufs();
$ufs->gerarCombo(); ?>
</select>
</div>
<div class="col-md-3"><b>CIDADE</b>
<select class="form-control" name="cod_cidade" id="cod_cidade"
onchange="combo('cod_cliente', 'selectcclientes', this.value )">
<option>Selecione Uma Cidade</option>
</select>
</div>
<div class="col-md-5"><b>CLIENTE</b>
<select class="form-control" name="cod_cliente" id="cod_cliente"
onchange="combo('relatorios', 'selectcrelatorios', this.value )">
<option>Selecione Um Cliente</option>
</select>
</div>
<br><br><br><br>
<div class="row">
<div id="relatorios"></div>
</div>
</div>
</div>
</section>
</body>
</html>