I need to maintain a database of links: link name, brief description, date added and document location (usually pdf or html). Rather than having my users type in the path to the document I'd like to implement some sort of file system browser to let them pick the file they want. Has anyone ever seen such a product? I don't really want to build this myself...
culley
I suppose all the links / paths are local ?
May be you can cheat with a button normally used to upload a file to a distant server like that :
<form action="..." method="POST"> File location : <input type=file name="" value="Browse"> </form>