This is the code I currently have...
<?php
$filename = "logs/news.txt";
$file = fopen( $filename, "r" );
$filesize = filesize( $filename );
$text = fread( $file, $filesize );
fclose( $file );
echo( "" );
echo( "$text" );
?>
How would I alter it to accomodate the above code?