adding multiple lines in info
Brought to you by:
panthar
I wanted to have multiple lines of text display for my dir
info
around line 205
if (file_exists($infofile)) {
$info = ParseInfoFile($infofile, $name);
print " $info[0]</td></tr>\n<tr bgcolor=white>";
print "<td colspan=$display_cols>";
foreach ( $info as $desc ) {
print "$desc<BR>";
}
print "</td>\n";
}
this will print the first line as normal
then all the lines in the info.txt file will print for the
description, perhaps someone can find an elegant
solution to skip the first line, I kinda liked it there