375e4c609caebd91717db3c2e5397884f1c6f0bc
[silc.git] / public_html / todo.php
1 <br />
2 <tt>
3 <font face="courier" size="3">
4 <?php
5
6 if (Is_Readable($DocRoot."todo.txt")) {
7   $fp = FOpen($DocRoot."todo.txt", "r");
8
9   while($line = FGets($fp, 255)) {
10     $newline = Ereg_Replace("^[ ]{2,4}","&nbsp;&nbsp;",$line);
11     $line = Ereg_Replace("^([\t]|[ ][\t])","&nbsp;&nbsp;&nbsp;&nbsp;",$newline);
12     printf("%s", nl2br($line));
13   }
14
15   FClose($fp);
16   }
17 ?>
18 </font>
19 </tt>