Ok, i have a file manager page, and i created a 'move files' page.

This page lists all of the members folders from the database.

Here is the DB structure:
Code:
folderID | parentID | memberID | folder_name | password | sharesetting
1 | 0 | 2 | Test Folder | NULL | 0
2 | 1 | 2 | Test Child Folder | NULL | 0
3 | 1 | 2 | Test Child Folder numeo 2 | NULL | 0
So according to that database, folder 1 is a parent folder shown at ROOT. Folders 2 & 3 are child folders of 1.

What i want to do, is have it so that when it lists all of the members folders it will show it as a Path. EG:

Test Folder
Test Folder / Test Child Folder
Test Folder / Test Child Folder numero 2

But it is not going to be limited to 2 folders. it could be a lot more than that.