The Bulletin’s for each week are archived on this page of our website.
[php]
$files = scandir(“./bulletin/files/”);
echo $files;
// Grab all files from the desired folder
$files = glob( ‘./bulletin/files/*.pdf’ );
// Sort files by modified time, latest to earliest
// Use SORT_ASC in place of SORT_DESC for earliest to latest
array_multisort(
array_map( ‘filemtime’, $files ),
SORT_NUMERIC,
SORT_DESC,
$files
);
// do whatever you want with $files
foreach($files as $file)
{
echo $file[4];
}
[/php]
April