Hi,
Thanks so much. It works great in Mozilla, but in IE it thinks the file name is the name of the file the code is in. So, instead of saving "myfile.doc" it tries to save "downloads.php".. any idea for a work around in IE?
<?
header("Content-Disposition: attachment; filename=$form_path");
header("Content-type: application/octet-stream");
header("Content-Transfer-Encoding: binary");
readfile($form_path);
?>
Sam