Forum Moderators: mack
I want a browse button on my site and user can browse his local folders and upload files on the site(server) and then could see the link to that file, so any one else on different machine could click the link and download or open that file.
Can any one be great help plzzzzzzzz
In your <form> tag you will specify the enctype="multipart/form-data" attribute and you'll need an <input type="file" /> tag. Something along these lines:
<form enctype="multipart/form-data" action="myformprocessingscript" method="POST">It's the myformprocessingscript that is the most important part, though. It is where the data gets sent on the server for processing. What server-side technology are you using?
Send this file: <input name="userfile" type="file" />
<input type="submit" value="Send File" />
</form>