| Zipping files via PHP 4 I want to set up a cron job that will back up (in human readable form) the data from a particular database table once a month by writing a text file, zipping it, and then attaching the zip file to an email. The part I need help with is the zipping.
From what I understand, I need functions like zip_open() to do this, but I just tried it and it's undefined, suggesting the required library is not installed (or enabled). Is this something I should open up a ticket for? Or is there another way I should be doing this? |