I have an href link to a php script.

<a href="videodire ctory/myFile.php">vid eo file</a>


The script is
Code:
<?php
header('Content-disposition: attachment; filename=filename.wmv');
header('Content-type: video/x-ms-wmv');
readfile('/videodirectory/filename.wmv');
?>
I have to have filename.wmv play in IE8 across our staff intranet;...