How To … Rotating Header Image

Untar a tar.gz file in php script

how to untar a tar.gz file in php script

<?php

system("tar -zxvf filename.tar.gz");

?>

Leave a Reply