I don't see why not. I'm only been playing around with PHP for about a week, but this is what I came up with:
Code:
$dir = "images/avatars";
$handle=opendir($dir);
while ($file = readdir($handle)) {
if ($file == ".." || $file == ".") {
}
else {
$file = ereg_replace( ".gif", "", $file);
$file = ereg_replace( ".jpg", "", $file);
$file = ereg_replace( "_", " ", $file);
print "<option value=\"$dir/$file\">$file</option>\n";
}
}
closedir($handle);
That should do it.