2aa9384a9f116137a7057553a3a9a6062fca4984
[silc.git] / public_html / todo.php
1 <br>
2 <tt>
3 <font face="courier" size="3">
4 <?php
5
6 if (File_exists($DocRoot."todo.txt"))
7   if ($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>
20 <br>