<?php
	$file = $_POST['path'];
	$filename = explode('/', $_POST['path']);
	$size = filesize($file);
	header("Content-type: application/zip");
	header("Content-Length: ".$size);
	header("Content-Disposition: attachment; filename=".$filename[3]);
	readfile($file);
?>