Added SILC Thread Queue API
[silc.git] / public_html / html / todo.php
1 &nbsp;<br />
2 <tt class="normal">
3 <?php
4
5 if (Is_Readable("txt/todo.txt")) {
6   $fp = FOpen("txt/todo.txt", "r");
7
8   while($line = FGets($fp, 255)) {
9     $newline = Ereg_Replace("^[ ]{2,4}","&nbsp;&nbsp;",$line);
10     $line = Ereg_Replace("^([\t]|[ ][\t])","&nbsp;&nbsp;&nbsp;&nbsp;",$newline);
11     printf("%s", nl2br($line));
12   }
13
14   FClose($fp);
15   }
16 ?>
17 </tt>