Place 2 you
Friday, October 19, 2012
Read file with php
How to read file with php?
example:
Text file name - example.txt
php code:
<?php
$file = '/path/to/file/example.txt';
foreach($file AS $row){
echo $row . "\n";
}
?>
Newer Post
Older Post
Home