View Full Version : please help me with this php code
mambenanje
02-06-2005, 01:23 PM
please anyone to tell me where I can get a nice tutorial teaching on how to use php and read from a directory identifying the subdirectories and files and using the same function to read from the subdirectories if any please
andehlu
02-08-2005, 10:44 PM
$path = "../medias/music"; //path to images directory
$read_dir = opendir($path);
//loop
while (false !== ($images = readdir($read_dir))){
if ( $images[0] != "." ){
echo $images";
}}
closedir($read_dir);
this will open and read the content of the dir specified in the $path variable. It wouldnt be too hard to make this recursive to get into child dirs...
|
vBulletin® v3.8.4, Copyright ©2000-2009, Jelsoft Enterprises Ltd.