-
Notifications
You must be signed in to change notification settings - Fork 0
/
lista_circuito.php
217 lines (177 loc) · 5.87 KB
/
lista_circuito.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<html>
<!--
/*
Este arquivo � parte do programa COCAR
COCAR � um software livre; voc� pode redistribui-lo e/ou
modifica-lo dentro dos termos da Licen�a P�blica Geral GNU como
publicada pela Funda��o do Software Livre (FSF); na vers�o 2 da
Licen�a.
Este programa � distribuido na esperan�a que possa ser util,
mas SEM NENHUMA GARANTIA; sem uma garantia implicita de ADEQUA��O a qualquer
MERCADO ou APLICA��O EM PARTICULAR. Veja a
Licen�a P�blica Geral GNU para maiores detalhes (GPL2.txt).
Voc� deve ter recebido uma c�pia da Licen�a P�blica Geral GNU
junto com este programa, se n�o, escreva para a Funda��o do Software
Livre(FSF) Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-->
<head>
<title>Rede de Acesso</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
<style type="text/css">
.caixa
{
BORDER-RIGHT: #F58735 1px solid;
BORDER-TOP: #F58735 1px solid;
BORDER-LEFT: #F58735 1px solid;
BORDER-BOTTOM: #F58735 1px solid;
FONT-SIZE: 10px;
FONT-FAMILY: Verdana, Arial;
width:100px;
}
body
{
scrollbar-face-color: #FFFFFF;
scrollbar-shadow-color: #c0c0c0;
scrollbar-highlight-color: #FFFFFF;
scrollbar-3dlight-color: #c0c0c0;
scrollbar-darkshadow-color: #FFFFFF;
scrollbar-track-color: #ffffff;
scrollbar-arrow-color: #c0c0c0;
font-family: Verdana, Arial;
font-size: 11pt;
}
A:link
{
font-family: Verdana, Arial;
font-size: 8pt;
FONT-WEIGHT: bold;
COLOR: #000000;
TEXT-DECORATION: none;
CURSOR: hand;
}
A:visited
{
font-family: Verdana, Arial;
font-size: 8pt;
FONT-WEIGHT: bold;
COLOR: #1A0300;
TEXT-DECORATION: none;
CURSOR: hand;
}
A:active
{
font-family: Verdana, Arial;
font-size: 8pt;
FONT-WEIGHT: bold;
COLOR: #0000FF;
TEXT-DECORATION: none;
CURSOR: hand;
}
A:hover
{
font-family: Verdana, Arial;
font-size: 8pt;
FONT-WEIGHT: bold;
TEXT-DECORATION: none;
color:#F58735;
CURSOR: hand;
}
.thd
{
background-color: #007700;
border-width: 1px;
border-style: solid;
border-color: #F58735;
FONT-FAMILY: Verdana, Arial;
FONT-SIZE: 9pt;
FONT-WEIGHT: bold;
COLOR: #FFFFFF;
}
.impar
{
background-color: #FFFFFF;
border-width: 1px;
border-style: solid;
border-color: #F58735;
FONT-FAMILY: Verdana, Arial;
FONT-SIZE: 8pt;
FONT-WEIGHT: bold
}
.par
{
background-color: #EEEEE6;
border-width: 1px;
border-style: solid;
border-color: #F58735;
FONT-FAMILY: Verdana, Arial;
FONT-SIZE: 8pt;
FONT-WEIGHT: bold
}
</style>
<script language="javascript">
function muda_pagina(file1,file2)
{
parent.frames[1].location.href=file1;
parent.frames[2].location.href=file2;
}
</script>
</HEAD>
<body background="imagens/fundoko.gif" LEFTMARGIN="8" RIGHTMARGIN="0" TOPMARGIN="6" BOTTOMMARGIN="0">
<?php
//inclusao de informacoes de conexao e definicao da funcao conexao()
include("config/conexao.php");
function interf()
{
$con=conexao();
mysql_select_db("rede_acesso",$con);
$res=mysql_query("select cod_int,nome,orgao,circuito from rede_acesso",$con);
if (mysql_num_rows($res) <> 0)
{
echo "<table border=1>\n";
echo "<tr><td align=center>Interface</td><td align=center>nome</td><td align=center>orgao</td><td align=center>circuito</td><td align=center>Editar</td><td align=center>Excluir</td></tr>";
while ($linha = mysql_fetch_array($res))
{
//começa linha do registro
echo "<tr>\n";
//primeira coluna
echo "<td align=center>" . $linha['cod_int'] . "</td>\n";
//segunda coluna
echo "<td align=left>" . $linha['nome'] . "</td>\n";
//terceira coluna
echo "<td align=left>" . $linha['orgao'] . "</td>\n";
//quarta coluna
echo "<td align=left>" . $linha['circuito'] . "</td>\n";
//quinta coluna
echo "<td align=center><form name=e_" . $linha['cod_int'] . " method=POST action=edita_circuito.php target='cadastro'> <input type='hidden' name='cod_int' value='" . $linha['cod_int'] . "'><input type=submit name='edit' value='Editar'> </form></td>\n";
//sexta coluna
echo "<td align=center><form name=x_" . $linha['cod_int'] . " method=POST action=lista_circuito.php> <input type='hidden' name='id' value='" . $linha['cod_int'] . "'><input type=submit name='Excluir' value='X' onclick=\"return confirm('deseja deletar " . $linha['cod_int'] . "?')\"> </form></td>\n";
//fim do registro
echo "</tr>\n";
}
echo "</table>\n";
}
mysql_close($con);
}
function excluir($id)
{
$con=conexao();
mysql_select_db("rede_acesso",$con) or die("problemas ao acessar rede_acesso");
$query="delete from rede_acesso where cod_int=\"" . $id ."\"";
mysql_query($query,$con) or die("problemas na execucao da delecao");
mysql_close($con);
echo "exclusão de $id realizada com sucesso!";
interf();
}
if ( $_POST['Excluir'] == 'X' )
{
excluir($_POST['id']);
}
else
{
interf();
}
?>
</BODY>
</HTML>