Showing posts with label read. Show all posts
Showing posts with label read. Show all posts

Monday, May 30, 2011

PHP Read text files

Reading files is just as easy as writing them.
<?php
$str = file_get_contents("myfile.txt");
echo $str;
?>
People might not like it, but it works and is super easy.