Select Directory

admin

Administrator
Staff member
Does anybody know how to create a "Browse" button that enables users to navigate to a directory rather than to a file. Basically, how to extract a directory name, for whatever purpose, from a user via a web page.<br />
<br />
Many thanks<!--content-->the only way you can creat a browse button is this way<br />
<br />
<form method="post" enctype="multipart/form-data" action="your_file.cgi"><br />
<input type="file" name="uploadedfile"><br />
</form><br />
<br />
unless you really do some serious serverside coding you won't be able to get just a dir. the way I showed you will select a file off the users hard drive.<!--content-->
 
Back
Top