$dir = opendir ("../input/");
while ( $file = readdir ($dir)){
if (( $file != ".") && ($file != "..")){
//как посчитать строки в фале
echo "<tr>
<td>$file</td>
<td >количество строк в фале</td>
</tr>";
}
}
closedir ($dir);
$path = "cron-files";
$dir = opendir($path);
echo "<table border=1 ><tr><th></th><th>Имя файла</th><th>Строк в файле</th> </tr>";
while ($file = readdir($dir)) {
if ( $file != "." && $file != ".." && $file != ".htaccess" ) {
$content=file_get_contents($path . '/'. $file);
$files = file($path . '/'. $file);
$count = count($files);
echo "<tr><td>$content</td><td>$file</td><td>$count</td> </tr>";
}
}
echo "</table>";
closedir($dir);