File PHP Baca
<?php
echo file_get_contents("text.txt");
?>
Thoughtless Turkey
<?php
echo file_get_contents("text.txt");
?>
<?php
$fh = fopen('filename.txt','r');
while ($line = fgets($fh)) {
// <... Do your work with the line ...>
// echo($line);
}
fclose($fh);
?>