I am trying to display images in a directory showing the newest one uploaded first. The script below shows the oldest one first. Any help would be appreciated. I am very new.
[php]<?php
//Your folder
$files = glob(“images/.”);
$colCnt=0;
echo ‘
’;
$num = $files[$i]; echo ‘ | ’;
?>
[/php]