Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

file downloading in php

<?php
if(isset($_REQUEST["file"])){
// Get parameters
    $file = urldecode($_REQUEST["file"]); // Decode URL-encodedstring
    $filepath = "images/" . $file;

// Process download
    if(file_exists($filepath)) {
        header('Content-Description: File Transfer');
        header('Content-Type: application/octet-stream');
        header('Content-Disposition: attachment; filename="'.basename($filepath).'"');
        header('Expires: 0');
        header('Cache-Control: must-revalidate');
        header('Pragma: public');
        header('Content-Length: ' . filesize($filepath));
        flush(); // Flush system output buffer
        readfile($filepath);
        exit;
    }
}
?>
Source by tutorials.ducatindia.com #
 
PREVIOUS NEXT
Tagged: #file #downloading #php
ADD COMMENT
Topic
Name
6+6 =