SoFunction
Updated on 2025-04-08

PHP Force download file code


<?php
$filename = '';
header("Content-Type: application/force-download");
header('Content-Disposition: attachment; filename="'.$filename.'"');
echo $filename;
?>