View Single Post
  #9  
Old 01-06-2004, 07:45 PM
Scott is offline Scott
Scott's Avatar
AKA. Panther

Join Date: Sep 2001
Location: Minneapolis, MN
Posts: 10,927

Somthing like this:

PHP Code:
<?
$file
="/path/to/file.ext"
Header ("Content-Type: application/octet-stream"); 
Header ("Content-Length: ".filesize($file)); 
Header"Content-Disposition: attachment; filename=".$file.""); 
readfile($file); 
?>
__________________

04' Dodge SRT-4, Mopar Stage 3, 406whp/436wtq
Reply With Quote