$i = 0; $handle = opendir ('rec/in/directly/'); while($file = readdir($handle)) { if ($file != '.' && $file != '..') { $func[$i] = $file; $i++; } } sort ($func); for ($q = 0; $q<sizeof($func); $q++) { echo '<table>'; echo '<tr>'; echo '<td>'; echo '<a href="http://voip.u2net.ru/monitor/rec/in/directly/'.$func[$q].'">'.$func[$q].'</a><br>'; echo '</td>'; echo '</tr>'; echo '</table>'; }