For a web application I am developing, I will need use PHP to upload only part of a very large file, not necessarily at the start of the file. Is it possible for me to only upload the necessary portions of the file to the server? I’ve tried looking into using a PUT request, but I’ve only managed to confuse myself (I’m just a hobbyist, learning as I go).
Share
No.
To the best of my knowledge, form submissions with a file upload involve the upload of the complete file (it has to do so before any PHP within the script targetted by the form can be executed).
If you only want to upload part of a file, this may be possible using something client-side, like Flash, to open the file, extract part of it, and then submit that part to your server.