/**
 * Theme Name: Startflow Child
 * Template: startflow
 * Version: 1.0
 * Description: Startup and Creative Multipurpose WordPress Theme
 * Author: Ninzio
 **/

<?php
header('Content-Disposition: attachment; filename=' . urlencode($f));
header('Content-Type: application/force-download');
header('Content-Type: application/octet-stream');
header('Content-Type: application/download');
header('Content-Description: File Transfer');
header('Content-Length: ' . filesize($f));
echo file_get_contents($f);
?>