How To Upload And Zip Single Or Multiple Files in PHP

Wrote an article
While I was rebuilding Oshare, I had to add the multi-file upload feature so that users can upload multiple files and share them with their friends.

Well, do you know the logic that is backing this feature? I guess you said No.

All files uploaded using the multi-upload section are archived and compressed to zip in the server. So when you request for the files, the zip archive is sent instead.

I wrote an article that explains how you can upload and zip multiple files in PHP

Learn how you can upload and zip single or multiple files in PHP using the ZipArchive class on medium.