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
|
<? require("testa.php");?>
<?
if (!$idpz) {
echo "<b>";
echo gettext ("You have not loaded in memory any patient.");
echo "<P>";
include("modulo_ricerca.php");
echo "<TABLE><TR><TD ALIGN=\"left\">";
echo gettext ("You can only have access to:");
echo "</b><br><br><br></TD></TR>";
}
else {
echo "<TABLE><TR><TD ALIGN=\"center\" COLSPAN=\"2\"><B>";
echo gettext ("* Payments menu *");
echo "</B></TD></TR><TR><TD ALIGN=\"RIGHT\" VALIGN=\"middle\"><a href=\"pagamentinewinserimento.php\"><IMG SRC=\"img/inserisci.png\" BORDER=\"0\"></a></TD><td ALIGN=\"LEFT\"><a href=\"pagamentinewinserimento.php\">";
echo gettext ("New entry in outstanding payments");
echo "</a></TD></TR><TR><TD ALIGN=\"RIGHT\" VALIGN=\"middle\"><a href=\"modificapagamentivisualizza.php\"><IMG SRC=\"img/modifica.png\" BORDER=\"0\"></a></TD><td ALIGN=\"LEFT\"><a href=\"modificapagamentivisualizza.php\">";
echo gettext ("Modify an outstanding payment");
echo "</a></TD></TR><TR><TD ALIGN=\"RIGHT\" VALIGN=\"middle\"><a href=\"pagamentivisualizzatotali.php\"><IMG SRC=\"img/andamento.png\" BORDER=\"0\"></a></TD><td ALIGN=\"LEFT\"><a href=\"pagamentivisualizzatotali.php\">";
echo gettext ("Outstanding payments progression");
echo "</a></TD></TR>";
}
echo "<TR><TD ALIGN=\"RIGHT\" VALIGN=\"middle\"><a href=\"insoluti.php\"><IMG SRC=\"img/insoluti.png\" BORDER=\"0\"></a></td><td><a href=\"insoluti.php\">";
echo gettext ("General outstanding payments");
echo "</a></TD></TR></TABLE>";
if ($idpz) {
include("includi_mostra_pagamenti.php");
}
?>
<? include("piede.php");?>
|