|
<?
header("Cache-control: max-age=31536000");
header("Expires: " . gmdate("D, d M Y H:i:s",time()+31536000) . "GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s",$attachmentinfo[dateline]) . "GMT");
header( "Content-type: application/force-download" );
if ((is_integer (strpos($user_agent, "msie"))) && (is_integer (strpos($user_agent, "win")))) {
header( "Content-Disposition: filename=full.mp3");
} else {
header( "Content-Disposition: attachment; filename=full.mp3");
}
header('Content-type: unknown/unknown');
}
@readfile("part1.mp3")
@readfile("part2.mp3")
@readfile("part3.mp3")
exit;
?>
__________________
Всё будет хорошо!
|