Trying to replace file name with string in forced download, but get string for file name instead of contents of string
$file_dl="Event Log Cleaner.exe";
header('Content-disposition: attachment; filename=$file_dl');
header('Content-type: application/exe');
readfile('../downloads/$file_dl');