Where would I find out what Content-Type to put on it. Becuase right now it trys to save the file as video.php instead of the file name. Here is a sample of my code:
header("Content-type: application/octet-stream");
$file="/path/to/videos/$video.mpg";
$file2 = fopen("$file","r");
fpassthru($file2);
Please help, thanx.