try this: <?php function download($file , $name) { $size = filesize($file); header("Content-type: application/octet-stream"); header("Content-disposition: attachment; filename=".$name); header("Content-Length: ".$size); header("Pragma: no-cache"); header("Expires: 0"); readfile($file); }
download("file_on_server.dat","download_as_.dat"); ?> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php