Skip to content

Instantly share code, notes, and snippets.

View adisheikh121's full-sized avatar

Adeel Sheikh adisheikh121

View GitHub Profile
@adisheikh121
adisheikh121 / download_files.php
Created May 5, 2017 12:52
How to download files in PHP
<?php
download('tasklist.pdf');
function download($filename){
if(!empty($filename)){
// Specify file path.
$path = ''; // '/uplods/'
$download_file = $path.$filename;
// Check file is exists on given path.