Dear All,
I am printing a file into browser with the following codes
$out = file('/home/zion/public_html/blast/output/text.txt');
foreach ($out as $line_num => $output)
{
echo ( " " . $output. "<br>"."\t\n");
}
The problem is that text.txt already has some formatting [with space and tab], which is lost while outputting.
How do I retain the text formatting???
Please help and thanks in advance
[rajkumar]