Unzip file using php code /16 Nov 2009 /Anil Kumar Panigrahi /1 Comment Use the following code to unzip the zip file using php code: <?php function unzip($location,$newLocation){ if(exec(“unzip $location”,$arr)){ mkdir($newLocation); chmod($newLocation,0777); for($i = 1;$i<... Read More