Странициране на папка

cold_zero

Registered
Как да направя след като сканира папката да показва по 10 резултата на страница?

Код:
<?
if ($handle = opendir('users')) {
  while (false !== ($file = readdir($handle)))
  {

    if ($file != "." && $file != ".." && $file != "index.htm"
      && $file != "") {



        echo '
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber2">
  <tr>
    <td width="80%"><img src="images/thumb_dir.png" border="0"><a target="I1" style="text-decoration: none;" href="gallery.php?user='.$file.'"><font face="Trebuchet MS" size="2">'.$file.'</font></a></td>
    
  </tr>
</table>
';
}
}
}
?>
 

Back
Горе