PDA

View Full Version : Photo Upload scripts / software



swagtails
04-01-2007, 07:10 AM
Can anyone recommend some cheap / free, easy integated scripts or software to allow folks to upload a maximum of 15 photos from a website ?

Many thanks

DaveSawers
04-01-2007, 06:51 PM
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...