I have this script wich forces a fil to download dialog:
<?php
$file = $_GET['file'];
header("Content-type: audio/mpeg");
header("Content-Disposition: attachment; filename=". $file);
readfile($file);
?>
But I want the download dialog to suggest a different name than the original file name. For...