Hey Guys.
I am displaying a txt file into my news.php page.
The problem is when it reads the txt file on my php page it displays the text without any paragraphs or line breaks.
just a big slab of text.
Im new to php and was wondering if any one can point me in the right direction, to solve this problem.
this is my code so far:
<html>
<head>
</head>
<body>
<table>
<tr>
<td>
<?php
readfile ("whatever.txt"); //the name of my text file
?>
</td>
</tr>
</table>
</body>
</html>
thanks,
Shaun