If you are on Unix/Linux the easiest way would be:
<?php
$filename = escapeshellarg ($_GET['filename']);
$destination_folder = escapeshellarg($_GET['destination_folder']);
echo shell_exec ("unzip -ou $filename -d $destination_folder");
?>
This will not work if safe_mode is on