Hi
I have scoured the forum, posted a few threads, googled and tried various scripts and still no closer to what I am trying to achieve. Please can someone tell if it is possible to have a php script that sits on my isp’s server that when called by a users pc will allow for multiple uploads (300 – 400) files at a time without using $_FILES function?
Many thanks
You mean to transfer files from the client's PC to your server?
In that case, if you're ruling out the usual file INPUT elements... you need some other type of client-side (example: a java applet) application to handle the file upload.
Thank for the reply.
Would it be possible to use the file INPUT element dynamically without making the user select each file to upload?
Thanks
Unfortunately, no, you can't modify the behavior of the file INPUT element (security concerns prevent you from doing much at all to it).