View previous topic :: View next topic |
Author |
Message |
medrastic -
Joined: 27 Jun 2006 Posts: 1
|
Posted: Tue Jun 27, 2006 10:39 am Post subject: directory problem |
|
|
i could not find out a way for the directory.
$basedir = @dirname(__FILE__);
how should i point to other directory
suppose i want to point the directory to this folder
www/music/mp3
what should i write in the above
so, i could see the files content of mp3 folder |
|
Back to top |
|
 |
aprelium -
Joined: 22 Mar 2002 Posts: 6800
|
Posted: Tue Jun 27, 2006 1:24 pm Post subject: Re: directory problem |
|
|
medrastic,
Could you please give us more details about the context of your question? A code snippet will help a lot. _________________ Support Team
Aprelium - http://www.aprelium.com |
|
Back to top |
|
 |
TRUSTAbyss -
Joined: 29 Oct 2003 Posts: 3752 Location: USA, GA
|
Posted: Tue Jun 27, 2006 6:13 pm Post subject: Re: directory problem |
|
|
medrastic wrote: | $basedir = @dirname(__FILE__);
how should i point to other directory
suppose i want to point the directory to this folder
www/music/mp3
what should i write... |
$basedir = "www/music/mp3";
Note: The dirname() function only returns the Parent Folder (The one before the
current folder). You use my path to get to the mp3 folder. :-) |
|
Back to top |
|
 |
|