#include <infodrom.style>
#include <db.style>

<page title="Infodrom Ticker">

<h3>Infodrom: Latest Ticker News</h3>

<table width="100%" border="0" cellpadding="1" cellspacing="0">
<?
    $file = "ticker.inc";
    if (is_file ($file)) {
      $f = fopen ($file, "r");
      if ($f !== false) {
        while (!feof ($f)) {
          $line = fgets ($f, 255);
          print ($line);
        }
        fclose ($f);
      }
    }
?>
</table><p>

</page>

# Local variables:
# mode: indented-text
# mode: auto-fill
# end:
