Hi all, Im trying to read text from a text file. Can someone tell me why this doesnt work? Thanks PHP: <?php $file = 'fileDataEx.txt'; $data = file($file) or die('Could not read file!'); foreach ($data as $line) { echo "<p class=\"style\" style=\"margin-top: 0; margin-bottom: 0\">";$line."<br></p>"; } ?>
PHP: <?php $file = 'fileDataEx.txt'; $data = file($file) or die('Could not read file!'); foreach ($data as $line) { echo "<p class=\"style\" style=\"margin-top: 0; margin-bottom: 0\">".$line."<br></p>"; } ?> Fixed