%PDF- %PDF-
Direktori : /home/cargonizer/public_html/ |
Current File : /home/cargonizer/public_html/download.php |
<?php @session_start(); @ob_start(); include 'includes/functions.php'; include 'includes/db.php'; $id = clean($_GET["hash"]); $rs = getTable('files',"WHERE md5(id)='{$id}'"); $dosya = "files/". $rs['file']; $ext = end(explode(".", $dosya)); $isim = ($rs['name']); header('Content-type: application/octet-stream'); header('Content-Disposition: attachment; filename="'. $isim .".". $ext .'"'); readfile($dosya); ?>