diff options
Diffstat (limited to 'download.php')
-rw-r--r-- | download.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/download.php b/download.php new file mode 100644 index 0000000..6ec810f --- /dev/null +++ b/download.php @@ -0,0 +1,12 @@ +<?php + +if (isset($_GET['file']) && $_GET['file']) { + + require_once('PHP_DW.php'); + + $dw = new PHP_DW(); + + $dw->download($_GET['file']); +} + +?> |