| in php you can unzip a .gz file simply with the command
exec("gzip -d myfile.gz");
so I suspect, although I haven't tried it, you can do the same with tar files using:
exec("tar -zxvf myfile.tar.gz");
give it a whirl and see what happens....
__________________
An old dog learning new tricks
|