Tagged Questions
3
votes
7answers
4k views
display contents of .txt file using php
using this code
<?php
foreach (glob("*.txt") as $filename) {
$file = $filename;
$contents = file($file);
$string = implode($contents);
echo $string;
echo ...