Code:
<?php
$handle = opendir ('./pics');
while (false !== ($file = readdir($handle))) {
if($file != "." && $file != ".." && $file != basename(__FILE__)) {
echo '<img src="pics/'.$file.'" width="50%" height="50%"/>';
}
}
?>
i use it to show images on the page.
Now, i Need the limit of images per page was 10, and then it creates a new page...
Can you help me do that?
