Unsupported scripts and control panel web app for a hosting company
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829
  1. <div class="block">
  2. <h2>Historic usage data</h2>
  3. <table class="innerblock">
  4. <tr>
  5. <th>Start</th>
  6. <th>End</th>
  7. <th>Bandwidth used</th>
  8. <th>HDD used</th>
  9. </tr>
  10. <?PHP
  11. $sql = 'SELECT * FROM historic_user WHERE user_id = '.UID;
  12. $res = mysql_query($sql) or mf(__FILE__, __LINE__, $sql);
  13. $i = 0;
  14. while ($row = mysql_fetch_array($res)) {
  15. ?>
  16. <tr<?PHP if ($i % 2 == 1) { echo ' class="odd"'; } ?>>
  17. <td><?PHP echo gmdate('d/M/Y',$row['hu_start']); ?></td>
  18. <td><?PHP echo gmdate('d/M/Y',$row['hu_end']); ?></td>
  19. <td><?PHP echo NiceSize($row['hu_bw']); ?></td>
  20. <td><?PHP echo NiceSize($row['hu_hdd']); ?></td>
  21. </tr>
  22. <?PHP
  23. $i = 1 - $i;
  24. }
  25. ?>
  26. </table>
  27. </div>