Hello
I have a zip file that users uploads from his/her computer. When the user clicks submit user opens file that has the following code:
$filetmp = $_FILES['file']['tmp_name'];
$zipfile = zip_open($filetmp);
(and some more...)
What I need is to open the zip file (which I think I have already done) and then take each file within the zip file (on the root) and save it to predefined location. How can I do this?
Thanks in advance!