Cannot output the same data from text file in PHP

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Folks,

I have a written a script in PHP which outputs the result from a text file.
The PHP script is as follows:

<?php
$alldata = file("result.txt");
echo "<table><tr><td>";
foreach($alldata as $line_num => $line) {
echo $line."<br>";
}
echo"</td></tr></table>";
?>

I have attached the result.txt file. However the output of the script is as
follows:


Query: 1 atggcaatcgtttcagcagaaaaattcgtaattcgagctcgcccggggatcgatcctcta 60
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Sbjct: 1 atggcaatcgtttcagcagaaaaattcgtaattcgagctcgcccggggatcgatcctcta 60

which is not exactly  as in the result.txt file in that the pipelines are displaced.

Any pointer to this problem shall be appreciated. Thanking you in advance.

Moses

Query: 1  atggcaatcgtttcagcagaaaaattcgtaattcgagctcgcccggggatcgatcctcta 60
          ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Sbjct: 1  atggcaatcgtttcagcagaaaaattcgtaattcgagctcgcccggggatcgatcctcta 60

                                    
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux