I get this error. Both files are saved at the root directory.
Parse error: parse error in /home/jeffrus/public_html/script.php on line 10
------------------------------------
Test.htm
<html>
<head>
<title>Testing MP3 Download</title>
</head>
<body>
<a href="script.php">Download Movie</a>
<!-- Where script.php is stored on your domain -->
</body>
</html>
------------------------------------
script.php
<?php
ini_set('session.cache_limiter', '');
header('Expires: Thu, 19 Nov 1981 08:52:00 GMT');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: no-cache');
header("Content-Disposition: disposition-type=attachment; filename=ARTIE-FCC-TNT-SONG.mp3");
readfile("http://jeffrusso.net/av/ARTIE-FCC-TNT-SONG.mp3");
<!-- the movie,mp3,mpeg file can be sitting on a remote domain and you just call to it. -->
?>