-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathVisualizzaScuola.php
executable file
·46 lines (39 loc) · 2.02 KB
/
VisualizzaScuola.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
<?php
// ----------------------------------------------------------------------
// Registro elettronico scuole ospedaliere
// ----------------------------------------------------------------------
// LICENSE and CREDITS
// This program is free software and it's released under the terms of the
// GNU General Public License(GPL)
// Link: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
// ----------------------------------------------------------------------
// Nome file: VisualizzaScuola.php
// Autore di questo file: Sophia Danesino, Puria Nafisi
// Descrizione: visualizza informazioni su una scuola
// ----------------------------------------------------------------------
// Autorizzazione: ruolo amministratore, operatore
// ----------------------------------------------------------------------
$title = "Visualizza Scuola";
include("Testa.inc");
autorizza_ruoli(ID_ADMIN,ID_OPERATORE,ID_OSPEDALIERO);
$sql = $link->query("SELECT * FROM Scuole WHERE id_scuola='{$_GET['id']}' --");
if (PEAR::isError($sql)) {die($res->getMessage());}
$riga = $sql->fetchRow(DB_FETCHMODE_ASSOC);
?>
<h3>Informazioni complete scuola</h3>
<table class="elenco">
<tr><th>Nome</th><td bgcolor="#DDDDDD"><?=$riga['nome']?></td></tr>
<tr><th>Codice</th><td bgcolor="#DDDDDD"><?=$riga['codice']?></td></tr>
<tr><th>Denominazione</th><td bgcolor="#DDDDDD"><?=$riga['denominazione']?></td></tr>
<tr><th>Indirizzo</th><td bgcolor="#DDDDDD"><?=$riga['indirizzo']?></td></tr>
<tr><th>CAP</th><td bgcolor="#DDDDDD"><?=$riga['cap']?></td></tr>
<tr><th>Città</th><td bgcolor="#DDDDDD"><?=$riga['citta']?></td></tr>
<tr><th>Provincia</th><td bgcolor="#DDDDDD"><?=$riga['provincia']?></td></tr>
<tr><th>Telefono</th><td bgcolor="#DDDDDD"><?=$riga['telefono']?></td></tr>
<tr><th>Fax</th><td bgcolor="#DDDDDD"><?=$riga['fax']?></td></tr>
<tr><th>E-mail</th><td bgcolor="#DDDDDD"><?=$riga['email']?></td></tr>
<tr><th>Sito web</th><td bgcolor="#DDDDDD"><?=$riga['sitoweb']?></td></tr>
</table>
<?
$up="VisualizzaScuole";
include "Coda.inc";?>