Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
Bookmarks
/
CHESS_ON
:
charge.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php $filename = basename($_GET['file']); //Specify file path. $path = ''; //'/uplods/' $download_file = $path.$filename; if(!empty($filename)){ //Check file is exists on given path. if(file_exists($download_file)) { header('Content-Disposition: attachment; filename=' . $filename); readfile($download_file); exit; } else { echo 'File does not exists on given path'; } } ?>