Esempio n. 1
0
<html>
<head>
    <title>Bilancio</title><link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>
<body bgcolor="#FFFFFF" link="#504C43" alink="#000000" vlink="#504C43" text="#000000">
<p><br></p>

<p>
	<div align="center">
		<form name="bilancioForm" action="Admin_Bilancio.php" metod="POST">
			<font class="FacetFormHeaderFont">Bilancio</font>

			
      <?php 
$annoCorrente = date("Y", time() + $timeadjust);
$annoBilancio = new selectAnniBilancio("annoRichiesto");
$annoBilancio->addSelected($annoCorrente);
$annoBilancio->output();
?>
			
    	<input name="bilancioAnnoRichiesto" type="submit" value="Redigi" class="FacetButton">
    </form>
	</div>

<table border="0" cellpadding="3" cellspacing="1" class="FacetFormTABLE" align="center">

  <!-- BEGIN Error -->

   <tr><td colspan="4" class="FacetDataTD"><?php 
print $message;
?>
Esempio n. 2
0
                        <?php 
// inserisco il select box per il campo data
$select_data = new selectDate("dataCompetenzaGiorno", "dataCompetenzaMese", "dataCompetenzaAnno");
$select_data->daySelected($dataCompetenzaGiorno);
$select_data->monthSelected($dataCompetenzaMese);
$select_data->yearSelected($dataCompetenzaAnno);
$select_data->output();
?>
                    </td>
                </tr>
                <tr>
                    <td class="FacetFieldCaptionTD">Anno Bilancio &nbsp;</td>
                    <td class="FacetDataTD" >
                        <?php 
// inserisco il select box per gli bilancio
$annoBilancio = new selectAnniBilancio("form[Anno_Bilancio]");
$annoBilancio->addSelected($form[Anno_Bilancio]);
$annoBilancio->output();
?>
                    </td>
                </tr>
								<tr>
                    <td class="FacetFieldCaptionTD">Tipo Pagamento * &nbsp;</td>
                    <td class="FacetDataTD">
                        <?php 
// inserisco il select box per il campo tipo pagamento
$select_pagamento = new selectPagamento();
$select_pagamento->addSelectName("form[Tipo_Pagamento]");
$select_pagamento->addSelected($form["Tipo_Pagamento"]);
$select_pagamento->output();
?>