I'm using PHP and Gzip off the server to gzip up some files.
If I select individual files, everything is fine, but I can't figure out the syntax to gzip a folder.
$zipfile=shell_exec("gzip -9 test.html");
That's what I'm using for a file.
But how do a zip a folder?