Forum Moderators: coopster
<?php
function listFolders(){
$path = glob("*"); //the double \\ is not a typo you
//have to escape it
//if the path cannot be found
if(!($path)){
echo("The path cannot be found");
return;
}//if
//the path is valid
else{
foreach($path as $i){
echo("<a href='$i'>$i</a><br>");
}//foreach
}//else
}//populateDropdown
?>
<?php echo listFolders(); ?>