This:
$var = get_the_contents ("file.txt");
This work GREAT...Thanks.
Another question. I have this code:
<html>
<body>
<?php
$mytxt = file_get_contents ("MyText.txt");
echo $mytxt;
?>
</body>
</html>
How can I have the content of the file displayed in "Verdana font"?
And change the color of the font...
I defined it in the <body font="Verdana"> but it doesn't work.
I really appreciate any help...
Thanks