Salve a tutti ho un piccolo problemino in pratica estraggo dei dati che somma per mese anno e me li riporta nella tabella in ordine di data il tutt funziona perfettamente solo che mi mette in ordine tutti i mesi vorrei visualizzare i mesi separatamente a pagine singole il codice e questo:
PHP:
<style type="text/css">
body {
background-color: #CCCCCC;
background-image: url(./images/bg.png);
background-repeat:repeat-x ;
font-family:Arial, Helvetica, sans-serif;
padding-top:60px;
}
#header {
text-align:center;
padding-bottom:30px;
}
</style>
<div id="header">
<img src="images/logo.png" height="100" width="800" />
</div>
<?php
// CONNESSIONE AL DATABASE
include ("conn.php");
$querystat = "SELECT SUM(ORA_1) + (ORA_2) + (ORA_3) + (ORA_4) + (ORA_5) + (ORA_6) + (ORA_7) + (ORA_8) + (ORA_9) + (ORA_10) + (ORA_11) + (ORA_12) + (ORA_13) + (ORA_14) + (ORA_15) + (ORA_16) + (ORA_17) + (ORA_18) + (ORA_19) + (ORA_20) + (ORA_21) + (ORA_22) + (ORA_23) + (ORA_24) + (ORA_25) + (ORA_26) + (ORA_27) + (ORA_28) + (ORA_29) + (ORA_30) + (ORA_31) somma, DATE_FORMAT(DATA,'%Y/%m') mese, ID_UTENTE, NOME_UTENTE FROM gps_personale GROUP BY ID_UTENTE, DATA ORDER BY DATA DESC";
$risultato = mysql_query($querystat);
while ($record = mysql_fetch_array($risultato)) {
$mese = $record["mese"];
$id_utente= $record["ID_UTENTE"];
$nome_utente= $record["NOME_UTENTE"];
$totimp = $record["somma"];
// CREA CODICE HTML
?>
<body bgcolor ="#808080">
<table align="center" bgcolor ="#FFA500" width="600" height="25" border=2>
<tr>
<td align="center" bgcolor ="#FFA500" width="25"><font color="#000000">ID_UTENTE</font></td>
<td align="center" bgcolor ="#FFA500" width="150"><font color="#000000">NOME_UTENTE</font></td>
<td align="center" bgcolor ="#FFA500" width="60"><font color="#000000">DATA</font></td>
<td align="center" bgcolor ="#FFA500" width="60"><font color="#000000">TOTALE ORA</font></td>
<tr>
<td align="center" width="25" height="25">
<font color="#0000FF"><?php echo $id_utente;?></td>
<td align="center" width="60" height="25">
<font color="#0000FF"><?php echo $nome_utente;?></font></td>
<td align="center" width="60" height="25">
<font color="#0000FF"><?php echo $mese;?></font></td>
<td align="center" width="60" height="25">
<font color="#0000FF"><?php echo $totimp;?></font></td>
</table>
<br>
<?php
}
}
?>