-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprincipal.php
executable file
·86 lines (73 loc) · 2.49 KB
/
principal.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
/*
COPYRIGHT 2008 - 2010 DO PORTAL PUBLICO INFORMATICA LTDA
Este arquivo e parte do programa E-ISS / SEP-ISS
O E-ISS / SEP-ISS e um software livre; voce pode redistribui-lo e/ou modifica-lo
dentro dos termos da Licenca Publica Geral GNU como publicada pela Fundacao do
Software Livre - FSF; na versao 2 da Licenca
Este sistema e distribuido na esperanca de ser util, mas SEM NENHUMA GARANTIA,
sem uma garantia implicita de ADEQUACAO a qualquer MERCADO ou APLICACAO EM PARTICULAR
Veja a Licenca Publica Geral GNU/GPL em portugues para maiores detalhes
Voce deve ter recebido uma copia da Licenca Publica Geral GNU, sob o titulo LICENCA.txt,
junto com este sistema, se nao, acesse o Portal do Software Publico Brasileiro no endereco
www.softwarepublico.gov.br, ou escreva para a Fundacao do Software Livre Inc., 51 Franklin St,
Fith Floor, Boston, MA 02110-1301, USA
*/
?>
<?php
session_start();
$_SESSION['autenticacao'] = rand(10000,99999);
if(isset($_SESSION["logado"]))
{ ?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>SEP - Sistema Eletrônico de Prefeitura v1.0</title>
<link href="css/padrao.css" rel="stylesheet" type="text/css">
<link href="css/menu.css" rel="stylesheet" type="text/css">
<?php include("scripts.php");?>
</head>
<body class="principal">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="left" valign="middle" bgcolor="#3c5c72" background="img/form/bg.png">
<?php include("inc/menu.php"); ?>
</td>
</tr>
<tr>
<td align="left" valign="top">
<?php
if($_GET['d']){
if(substr($_GET['d'],0,6)== 'janela'){
include_janela(substr($_GET['d'],8),'JANELA',substr($_GET['d'],6,1));
//Mensagem(substr('janela1:a',7,1));
}else{
include $_GET['d'];
}
}else if($_GET['j']){
if($btDetalhesPrestadorVisualizar){
$_POST['include'] = str_replace('tomadores','prestadores',$_POST['include']);
$_POST['CODEMISSOR'] = $_POST['CODTOMADOR'];
}
include_janela($_POST['include']);
}else
if($_POST['include']){
if($btDetalhesPrestadorVisualizar){
$_POST['include'] = str_replace('tomadores','prestadores',$_POST['include']);
$_POST['CODEMISSOR'] = $_POST['CODTOMADOR'];
}
include($_POST['include']);
}
?>
</td>
</tr>
</table>
</body>
</html>
<?php
}
else
{
print("<script language=JavaScript>alert('Sem permissão de acesso!!!');parent.location='login.php';</script>");
}
?>