-
Notifications
You must be signed in to change notification settings - Fork 3
/
certidaonome.php
executable file
·144 lines (142 loc) · 5.74 KB
/
certidaonome.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<?
/*
* E-cidade Software Publico para Gestao Municipal
* Copyright (C) 2009 DBselller Servicos de Informatica
* www.dbseller.com.br
*
* Este programa e software livre; voce pode redistribui-lo e/ou
* modifica-lo sob os termos da Licenca Publica Geral GNU, conforme
* publicada pela Free Software Foundation; tanto a versao 2 da
* Licenca como (a seu criterio) qualquer versao mais nova.
*
* Este programa e distribuido na expectativa de ser util, mas SEM
* QUALQUER GARANTIA; sem mesmo a garantia implicita de
* COMERCIALIZACAO ou de ADEQUACAO A QUALQUER PROPOSITO EM
* PARTICULAR. Consulte a Licenca Publica Geral GNU para obter mais
* detalhes.
*
* Voce deve ter recebido uma copia da Licenca Publica Geral GNU
* junto com este programa; se nao, escreva para a Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
* 02111-1307, USA.
*
* Copia da licenca no diretorio licenca/licenca_en.txt
* licenca/licenca_pt.txt
*/
include("libs/db_sql.php");
include("libs/db_conecta.php");
include("libs/db_stdlib.php");
session_start();
parse_str(base64_decode($HTTP_SERVER_VARS["QUERY_STRING"]));
$result = pg_exec("SELECT distinct m_publico,m_arquivo,m_descricao
FROM db_menupref
WHERE m_arquivo = 'certidao.php'
ORDER BY m_descricao
");
db_fieldsmemory($result,0);
if($m_publico != 't'){
/*
if(!session_is_registered("DB_acesso"))
echo"<script>location.href='index.php?".base64_encode('erroscripts=3')."'</script>";
*/
}
if(@$nome!="") {
$opcao = "CNPJ:";
$retorna = "onSubmit='return js_verificaCGCCPF(this.cnpj,this.cpf)'";
$opcao2 = "cnpj";
$funcao = "onKeyDown='FormataCNPJ(this,event)'";
$max = "18";
$size = "18";
}elseif(@$matric!="") {
$opcao = @$matric.":";
$opcao2 = "matric";
$retorna = "onSubmit='return js_verificamatricula()'";
$max = "10";
$size = "10";
}elseif(@$inscr!=""){
$opcao = @$inscr.":";
$opcao2 = "inscr";
$retorna = "onSubmit='return js_verificamatricula()'";
$max = "10";
$max = "6";
$size = "8";
}elseif(@$verifica!=""){
$opcao = @$verifica.":";
$max = "50";
$size = "50";
$opcao2 = "verifica";
}
db_mensagem("certidaonome_cab","certidaonome_rod");
mens_help();
$dblink="certidao.php";
?>
<html>
<head>
<title><?=$w01_titulo?></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript" src="scripts/db_script.js"></script>
<script>
js_verificapagina("certidao.php");
function js_errocgc(cgc){
alert('Número CNPJ/CPF '+cgc+' inválido');
}
function testa() {
var numero = new Number(document.form1.<?=@$opcao2?>.value);
if(isNaN(numero)){
alert ("Este campo deve ser preenchido somente com números");
document.form1.<?=$opcao2?>.focus();
}
}
function js_verificamatricula() {
if (document.form1.<?=$opcao2?>.value == "" || isNaN(document.form1.<?=$opcao2?>.value)){
alert("Código de <?=$opcao?> Inválido.");
document.form1.<?=$opcao2?>.focus();
document.form1.<?=$opcao2?>.select();
return false;
}
}
</script>
<style type="text/css">
<?db_estilosite();?>
</style>
<link href="estilos.css" rel="stylesheet" type="text/css">
<link href="config/estilos.css" rel="stylesheet" type="text/css">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="<?=$w01_corbody?>" onLoad="" <? mens_OnHelp() ?>>
<!--<form name="form1" method="post" onSubmit="window.open('certidao2.php','cert','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,height=500,width=700')">-->
<?mens_div();?>
<center>
<br><br><br>
<form name="form1" method="post" action="certidao2.php" <?=@$retorna?>>
<table width="100%" border="0" class="texto">
<tr>
<td width="42%" align="right">
<?=$opcao?>
</td>
<td width="58%" align="left"><input name="<?=@$opcao2?>" type="text" value="" size="<?=$size?>" maxlength="<?=$max?>" <?=@$funcao?>></td>
</tr>
<tr>
<td align="right">
<?
if(@$nome!="") {
$name = "cpf";
$opcao1 = "CPF:";
echo $opcao1."
</td>
<td align=\"left\"><input name=\"$name\" type=\"text\" value=\"\" onKeyDown=\"FormataCPF(this,event)\" size=\"14\" maxlength=\"14\">
</td>";
}else{
echo "</td>";
}?>
</tr>
<tr>
<td align="center"> </td>
<td align="left"><input class="botao" type="submit" name="Submit" value="Emitir certidão"></td>
</tr>
</table>
</form>
</center>
<!--</form>-->
</body>
</html>