Hi all
I have a zipped file and when the file is uploaded and I want to unzip it. Anyone can tell me how to unzip a file using php?
thanks alll
the simplest method: exec('unzip filename');
hi This exec('unzip filename'); does not unzip anything. is there another method to unzip zip file?
exec() just executes the unzip program. Obviously that program must exists for this to work....