Minutes

[insert_php] $dirs = glob(‘./meeting/*’, GLOB_BRACE); foreach(array_reverse($dirs) as $dir) { $sdir = substr(“$dir”, 10, 4); echo ”
    “; $files = glob(“$dir/*.{pdf}”, GLOB_BRACE); foreach($files as $file) { $odate = substr(“$file”, 15, 10); $ndate = date(“F jS”,strtotime($odate)); $tmp = substr(“$file”, 2); $link = “http://00013ute.org/$tmp”; echo ”
  • $ndate
  • “; } echo ”
“; } [/insert_php]