This repository has been archived by the owner on Jan 13, 2024. It is now read-only.
forked from danesino/Registro-elettronico
-
Notifications
You must be signed in to change notification settings - Fork 1
/
indice_doc.php
executable file
·64 lines (58 loc) · 2.03 KB
/
indice_doc.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
<?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)
// Please READ carefully the Docs/License.txt file for further details
// Please READ the Docs/credits.txt file for complete credits list
// ----------------------------------------------------------------------
// Autore di questo file: Sophia Danesino, Puria Nafisi
// Descrizione: Menu principale registro
// ----------------------------------------------------------------------
$title = "Menu principale";
include("Testa.inc");
autorizza_ruoli(ID_OSPEDALIERO, ID_DOMICILIARE);
?>
<h1 class="title">Registro elettronico</h1>
<table class="index">
<tr><td colspan="2">
<?php
// Visualizza il ruolo con cui si è collegati e il nome della scuola ospedaliera
$r =& $link->query("SELECT * from Ruoli WHERE (id_ruolo= ?) LIMIT 1", $RUOLO);
if (PEAR::isError($r))
echo "<dl><dd>$r</dd></dl>";
else
$r->fetchInto($obj);
print "Ciao <strong>$NOME $COGNOME!</strong> Sei collegato come <strong>{$obj['descrizione']}</strong> alla Scuola ospedaliera <strong>$REG</strong>";
?>
</td></tr>
<tr>
<td class="utentisx">Registro</td>
<td class="utentidx">
<a href="Registro.php">Compilazione del registro</a>
</td>
</tr>
<tr>
<td class="cdcsx">Messaggi</td>
<td class="cdcdx">
<a href="InviaMessaggio.php">Invio Messaggi</a>
<br> <br>
<a href="VisualizzaMessaggi.php?a=1">Archivio Messaggi Ricevuti</a>
</td>
</tr>
<tr>
<td class="utentisx">Logout</td>
<td class="utentidx">
<a href="Logout.php">Termine sessione</a>
</td>
</tr>
</table>
<div class="rel">
<?
$a=file_get_contents('VERSION');
echo "Rel. ".$a;
echo '<br /><a href="http://www.fsf.org/licensing/licenses/gpl.txt">GNU General Public License v.2</a></div>';
$up="index";
include "Coda.inc";?>