I need to create a list if files in a directory as in
$editions = glob($gvars[html_dir].'*.html');
rsort($editions);
$gvars[html_dir] contains the relative directory which is included in the results. What is the best way to just get the file name without the directory?
Todd