I would like to only show folders, not the files.
It is showing me files and folders.
PHP Code:
PHP Code:
<?php function populateDropdown(){ $path = glob("/home/bucket/public_html/*"); //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("<option value=$i>$i</option>");
}//foreach }//else }//populateDropdown
?>
Code:
<select>
<?php populateDropdown(); ?>
</select>
__________________
█ MY MSN: Please login or register to view this content. Registration is FREE
█ PHP, HTML, and CSS Coding, Logo and Web Design - Professionally done.
█ PM me anytime for HTML, PHP or web design help. I will be glad to help you out.
Last edited by sith717; 11-17-2009 at 09:08 PM..
|