File Upload Form

LAL63069

New Member
Could anyone offer some guidance for how to create a form that would allow users to upload files on to a site and then allow us to download the file? Would this require a database?
 
Just search the web for "php file upload" and you'll find some guidance. Caution is advised however. There are all sorts of security concerns about allowing this.
 

peterjoys

New Member
The file upload form looks just like any other form except that:

1. the form tag must specify the POST method
2. the form tag must specify an enctype of multipart/form-data
3. the form must contain an <input type=file> element.
 
Top