Ave,
The browser window which launched the Save As window...
PHP cannot do this. You'll have to use JavaScript in the browser window. Something like....
<?php
$file = "$P/$F";
header("Content-Description: File Transfer");
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=".basename($file));
@readfile($file);
?>
<script language="JavaScript">
window.close();
</script>-- John C. Nichel �berGeek KegWorks.com 716.856.9675 [EMAIL PROTECTED]
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

