ho inserito più persone però viene disordinato e poi senza dei colori per le ore viene una schifezza, $rsTaskOggi = GetSommaOreTask($lun->format('Y-m-d'), "gm"); in questa parte di codice c`è un pezzo con la scritta "gm" ma non posso fare 8 tabelle per tutti come posso fare grazie in anticipo
PHP:
<div class="spacer100"></div>
<div class="container">
<div class="row">
<h3>Dettaglio Guido M</h3>
<div class="col-sm-12">
<div class="container">
<table style="border:1px solid black;border-collapse:collapse;">
<tr>
<th>Settimana</th></b>
<th>Lun</th>
<th>Mar</th>
<th>Mer</th>
<th>Gio</th>
<th>Ven</th>
<th>Sab</th>
<th>Dom</th>
<th>TOTALE</th>
</tr>
<?php for ($w = 0; $w < 5; $w++) { ?>
<tr>
<th>
<?php
//variabile in cui salvare il giorno LUNEDI' della settimana
$lun = new DateTime($monday->format('d-m-Y'));
echo "Sett del ". ($lun)->modify('-'.$w.' week')->format('d-m-Y');
?>
</th>
<?php
$TotOreWeek = 0;
for ($i = 0; $i <7; $i++) {
$myDate = $lun->format('d-m-Y');
$OreFatteOggi = 0;
$rsTaskOggi = GetSommaOreTask($lun->format('Y-m-d'), "gm"); //$r->codice
while ($t = $DB->FetchObject($rsTaskOggi)) {
$OreFatteOggi = $t->ore_lavorate;
}
echo "<td>".$OreFatteOggi."</td>";
$TotOreWeek += $OreFatteOggi;
$lun->modify('+1 day');
}
?>
<th><?php echo $TotOreWeek; ?></th>
</tr>
<?php } ?>
</table><br><br>
</div>
<div class="spacer100"></div>
</div>
</div>
Allegati
Ultima modifica di un moderatore: