Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.65K
~7K People Reached
Favorite Forums
Favorite Tags
php x 1

1 Posted Topic

Member Avatar for alicem

Fixed. And resurrecting a year old thread :D [CODE]function recurseDir($dir) { if(is_dir($dir)) { if($dh = opendir($dir)){ while($file = readdir($dh)){ if($file != '.' && $file != '..'){ if(is_dir($dir . $file)){ echo $dir . $file; // since it is a directory we recurse it. recurseDir($dir . $file . '/'); }else{ echo $dir …

Member Avatar for HavocAngel
0
7K

The End.