View Single Post
  #2 (permalink)  
Old 04-01-2007, 06:51 PM
DaveSawers's Avatar
DaveSawers DaveSawers is offline
WebProWorld Veteran
 

Join Date: Dec 2006
Location: Calgary, Alberta, Canada
Posts: 380
DaveSawers RepRank 1
Default

Do you mean upload to a website or download from a website?

To upload to a site, use a:

<form enctype="multipart/form-data" action="..." ...>

with an:

<input type="hidden" name="MAX_FILE_SIZE" value="...">
<input type="file" name="picture" value="filename">

Then it depends on what you want to do with that picture once it has been uploaded. Do a search on "input type file" for more info.

To download from a website, get them to right click and do save as...
__________________
Dynamic Software Development
www.activeminds.ca
Reply With Quote