Absolutely. I have tried three separate times to get help with a similar problem and finally gave up since no one was showing any interest in helping me out....
Here's the headers:
header("Content-Type: $filetype");
header("Content-Disposition: atachment ; filename=\"" . $row['filename']. "\"");
header("Content-Length: $row[filesize]");
I was trying it without the attachment part of the Content-Disposition header but then I found out netscape images were broken so I put it back in, but it is still broken. I would really like it to have a filename if the user wants to save, but I don't really want it to bring up a save dialog automatically. Any ideas?
Dave