Changeset 13 for index.php


Ignore:
Timestamp:
Oct 17, 2007, 7:06:49 PM (17 years ago)
Author:
george
Message:

Přidáno: Stránka pro přidání nového měření a implicitní hodnoty pro třídu Measure.
Přidání: Skript pro měření dostupnosti MaNGOS procesu worldd.
Přdáno: Automatické dosazování prefixů jednotek a zaokrouhlování na zadaný počet platných míst.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • index.php

    r6 r13  
    174174
    175175$Output .= '<table border="1" cellspacing="0" cellpadding="2" style="font-size: small;">';
    176 $Output .= '<tr><th>Mìøená velièina</th><th>Èas posledního mìøení</th><th>Poslední hodnota</th><th>Interpolace</th><th>Poznámky</th>';
     176$Output .= '<tr><th>Mìøená velièina</th><th>Poslední hodnota</th><th>Èas posledního mìøení</th><th>Interpolace</th><th>Poznámky</th>';
    177177if(array_key_exists('Debug', $_GET)) $Output .= '<th>Poèet polo¾ek</th><th>Èas vykonání</th>';
    178178$Output .= '</tr>';
     
    195195    $Row = $Result2->fetch_array();
    196196    $LastMeasureTime = date('j.n.Y G:i:s', MysqlDateTimeToTime($Row['time']));
    197     $LastMeasureValue = round($Row['avg'] / $Measure['Divider']);
     197    $LastMeasureValue = AddPrefixMultipliers($Row['avg'], $Measure['Unit']);
    198198  } else {
    199199    $LastMeasureTime = '&nbsp;';
     
    203203  if($Measure['Info'] == '') $Measure['Info'] = '&nbsp;';
    204204  $GenerationTime = floor((GetMicrotime() - $StopWatchStart) * 1000  ) / 1000;
    205   $Output .= '<tr><td><a href="?Measure='.$Measure['Id'].'">'.$Measure['Description'].'</a></td><td align="center">'.$LastMeasureValue.' '.$Measure['Unit'].'</td><td align="center">'.$LastMeasureTime.'</td><td align="center">'.$Interpolate.'</td><td>'.$Measure['Info'].'</td>';
     205  $Output .= '<tr><td><a href="?Measure='.$Measure['Id'].'">'.$Measure['Description'].'</a></td><td align="center">'.$LastMeasureValue.'</td><td align="center">'.$LastMeasureTime.'</td><td align="center">'.$Interpolate.'</td><td>'.$Measure['Info'].'</td>';
    206206  if(array_key_exists('Debug', $_GET)) $Output .= '<td>'.$RowCount.'</td><td>'.$GenerationTime.'</td>';
    207207  $Output .= '</tr>';
Note: See TracChangeset for help on using the changeset viewer.