$dir_path = "/usr/local/www/whatever";
chdir($dir_path);
$dir=opendir(".");
echo "<select name=\"htmlname\">";
while ($file=readdir($dir))
{
echo "<option value=\"$file\">$file</option>";
}
echo "</select>";
this should get you started
change $dir_path to desired disrectory