Modifiche HTML

This commit is contained in:
cmaffio
2016-05-20 17:30:01 +02:00
parent de0e6e1867
commit 691a64e13a
32 changed files with 776 additions and 653 deletions

View File

@@ -4,22 +4,8 @@ $UTENTE = login();
$DIRITTI = diritti('Utente');
view_top();
?>
<meta http-equiv="refresh" content="10">
<script type="text/javascript">
<!--
var stile = "top=30, left=30, width=1000, height=500, status=no, menubar=no, toolbar=no ";
function PopupG(apri)
{
window.open(apri, "", stile);
}
//-->
</script>
<table cellpadding="0" cellspacing="0" border="0" width="90%">
<?php
$query = " SELECT
GREATEST (max(inviati), max(ricevuti)) AS max
FROM
@@ -49,9 +35,10 @@ $query = " SELECT
";
$res = mysql_query( $query, $DB_ID );
$tabella = new html (0,"90%", array (3,3,2,20,2,8,2,10,2,0));
while ($dato = mysql_fetch_array ( $res )) {
?>
<tr>
<?php
if ($dato['attivo']) {
@@ -69,7 +56,6 @@ while ($dato = mysql_fetch_array ( $res )) {
<td class="colspeed"><?php print byteConvert($dato['inviati']) ?> </td>
<td class="spazioh"><img src="<?php print $CONF['base_url'] ?>/img/spazio.gif"></td>
<td class="colimg"><img border="0" src="barra.php?max=<?php print $max ?>&val=<?php print $dato['inviati'] ?>&col=red"></td>
</td>
</tr>
<tr>
<?php
@@ -83,10 +69,9 @@ while ($dato = mysql_fetch_array ( $res )) {
<td class="colimg"><img border="0" src="barra.php?max=<?php print $max ?>&val=<?php print $dato['ricevuti'] ?>&col=blue"></td>
</tr>
<tr><td class="spaziov" colspan=10><img src="<?php print $CONF['base_url'] ?>/img/spazio.gif"></td></tr>
<?php
} ?>
</table>
<img src="<?php print $CONF['base_url'] ?>/img/spazio.gif" width="1" height="20" alt="">
<?php view_footer(); ?>
$tabella->riga();
}
$tabella->close();
view_footer();
?>