is there a way to get the name of every file within a certain directory?
EDIT
incase anyone wants to know
$dir = opendir($current_dir); while ($file = readdir($dir)) { $files[] = $file; }