I have a text file that i would like to display a part of so i use this code:
<?php
$page = file_get_contents('news.txt');
echo $page;
?>
But in news.txt if i have this code <?php echo"hello world!"; ?>
It will not display... when i look at the source code of my page i see my code in red. How can i display it.
btw: I know about include but thats not what i need.
Thanks for your help, Sanchixx.