Choosing A Type Disposition

Posted on by 0 comment

Type dispositions allow you choose the action the browser will take when you give it a file, it’s defined in rfc 2183 if you want to display the file in the browser you can output

print "Content-Disposition: inline; filename="$filename.$ext"n"

as apart of the file before the mime type and if you wish to force a download of the file use

print "Content-Disposition: attachment; filename="$filename.$ext"n"
Category: Software | Tags: , ,

Leave a Reply

Your email address will not be published. Required fields are marked *