|
Posted by Murfy on 02/05/06 03:55
Dalibor schreef:
> I have following code for putting contenst of a file into a web page:
> <?php
> $filename = "../msd/news.txt";
> $handle = fopen ($filename, "r");
> $content = fread ($handle, filesize($filename));
> fclose($handle);
> echo ($content);
> ?>
> But in file news.txt I have formating that is not showing, but
> interpreting.
> For example, in that file there is:
> <a href="link.php">link</a>
> End result is hyperlink.
>
> Can you tell me what I did wrong?
> --
> .:Dalibor:.
Just echo htmlentities($content); and you'll be fine :D
Navigation:
[Reply to this message]
|