May
28
PHP: Read the contents of files in a directory
Here is a basic php script to read the contents of “text” files in a directory.
<form>
<center>
<div>
IP’s of all clients</br></br>
<?php
foreach (glob(“workstations/*”) as $file) {
$file_handle = fopen($file, “r”);
while (!feof($file_handle)) {
$line = fgets($file_handle);
echo $line;
}
fclose($file_handle);
echo ‘<br>’;
}
?>
</div>
</center>
</form>