i am building an interface to my movie database. the database lives on my htpc and feeds my movie selection software (cinemar mainlobby/dvdlobby www.cinemaronline.com).
all my movies are stored on hard drives on my htpc. also the htpc serves this php interface that i am building. it is a windows xp system running IIS.
what i am working on is the ability to add movies to the database from the web interface. the beginning part is a simple form where you fill out the movie title, rating, description and so on.
but the hard part is when i have to specify the path to the movie file.
for instance "Wedding Crashers" is on the HTPC at D:\movies\wedding crashers\video_ts.ifo
and thats how it is stored in the database. it has to be for mainlobby to work right.
so what i need to do is when adding a movie from the web interface have some way of browsing the server (HTPC) hard drives for movie files.
i always store my movies in the same folder (D:\movies) but the subfolders can vary. so if it helps i can make a virtual directory in IIS to the D:\movies so that the movies folder would be accessible under the webroot.
is this something thats possible to do using php?