Help with php coding?

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 example: the original file name is "myfile.mp3" I want the dialog to suggest "this is - my file.mp3"
Is it possible?? If yes, how?
 
Back
Top