Hello,
I've run into a small problem. I made a site with php. By using the following code I can display the content of a textfile.
$fpFile = fopen($file2[$val], "r");
$contents = fread($fpFile, filesize($file1[$val]));
fclose($fpFile);
echo $contents;
My problem is that I would have breaks in the text showed as I see them in my text editor and not as one textblock
Thanks.