-
Hello -
I need to create a way for a user to upload a file to a specific directory on a host server using a browser interface.
A "browse" button to find the file on the HD, and an "upload" button to drop the file into the directory.
Can this be done using HTML and a form? Or should I direct this question to the PHP area?
Thanks.
-
You're going to need PHP (or ASP or another server-side technology).
-
Paul,
A very common topic.
Search this forum (or google) for: php file upload
The methods range from simple (no security checks) to
elaborate file checking and password processing.
-
Thank you both. I'll look for a PHP solution.