01.
<html>
02.
<head>
03.
</head>
04.
<body>
05.
<?php
06.
$ZipName
=
"MyFiles/MyZip.zip"
;
07.
require_once
(
"dZip.inc.php"
);
08.
$zip
=
new
dZip(
$ZipName
);
09.
$zip
->addFile(
"thaicreate1.txt"
,
"thaicreate1.txt"
);
10.
$zip
->addFile(
"thaicreate2.txt"
,
"thaicreate2.txt"
);
11.
$zip
->addDir(
"MySub"
);
12.
$zip
->addFile(
"thaicreate3.txt"
,
"MySub/thaicreate3.txt"
);
13.
$zip
->addFile(
"thaicreate4.txt"
,
"MySub/thaicreate4.txt"
);
14.
$zip
->save();
15.
echo
"Zip Successful Click <a href=$ZipName>here</a> to Download"
;
16.
?>
17.
</body>
18.
</html>