I have more than 100 images on folder, i have listed all images in one page. But i need to list all images with last updated and pagination.

Please help

link|improve this question
2  
give us what you already did – silent Nov 21 '11 at 11:55
feedback

closed as not a real question by 一二三, BoltClock, Wooble, tanascius, ChrisF Nov 22 '11 at 12:17

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

Function for work with files in folders http://php.net/manual/en/function.opendir.php and library for use pagitation https://github.com/jimmiw/php-paginate

link|improve this answer
feedback

This should work, although I have not tested it.

<table>
    <tr>
        <th>Filename</th>
        <th>Last modified</th>
        <th>Size</th>
    </tr>
<?php
    $filesOnPage = 30;
    $_GET["start"] = intval(@$_GET["start"]);
    $files = glob("/PATH TO YOUR FOLDER/*.jpg");
    sort($files);
    $countFiles = count($files);
    for($i = $_GET["start"]; ($i<$countFiles)&&($i<$_GET["start"]+$filesOnPage); $i++){
        echo '<tr>';
        echo '<td style="text-align: left;">'.end(explode("/", $files[$i])).'</td>';
        echo '<td style="text-align: center;">'.date("Y-m-d H:i:s", filemtime($files[$i])).'</td>';
        echo '<td style="text-align: right;">'.round(filesize($files[$i])/1024).' kB</td>';
        echo '</tr>';
    }
?>
</table>
<hr />
<div>
    <a href="?start=0">First</a>
    <?php if($_GET["start"]>=$filesOnPage){ ?><a href="?start=<?php echo ($_GET["start"]-$filesOnPage); ?>">Previous</a><? } ?>

    <?php
        $pageNumber = 0;
        for($i = 0; $i<$countFiles; $i+=$filesOnPage){
            $pageNumber++;
            echo '<a href="?start='.$i.'">'.$pageNumber.'</a> ';
        }
    ?>

    <?php if($_GET["start"]<($countFiles-$filesOnPage)){ ?><a href="?start=<?php echo ($_GET["start"]+$filesOnPage); ?>">Next</a><? } ?>
    <a href="?start=<?php echo ($countFiles-($countFiles%$filesOnPage)); ?>">Last</a>
</div>
link|improve this answer
its working fine thanks Mila, kindly help me how to show the last updated files on first page. – saravana Nov 25 '11 at 5:26
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.