This will be updated every few minutes automatically… might eventually move this to the sidebar… I’ll also put up the archives from the folder and the code to do this soon.
// show the 5 most recent files in a folder… http://forums.digitalpoint.com/showthread.php?t=925117
$dir = “/home/thelondo/public_html/brokencitylab/mike/_timelapse/timelapse-scaled/”;
chdir($dir );
$show = 1;
$files = glob( ‘*.{html,php,php4,txt,jpg}’, GLOB_BRACE );
usort( $files, create_function(‘$b, $a’, ‘return filemtime( $a ) – filemtime( $b );’) );
for ( $i = 0; $i < $show; ++$i )
echo “![]()
“;
?>
Continue reading “Gallery Time-Lapse”