With PHP you could create zip files and even in newest version you could set Password for your zip file. but how I can add new data to the password protected zipped file?
in PHP you could add file to the zipped file without extracting it. but I want to do same for password protected zipped file.
one of the ways is using
Code:
echo shell_exec('unzip -P password file.zip');