Voting

: max(eight, six)?
(Example: nine)

The Note You're Voting On

MerlinsInvite
22 years ago
I solved the problem with pushing downloads to browser's, without needing to play with server/session parameters by using :
header("Content-Disposition: inline; filename=\"$filename\"");
for IE browsers and
header("Content-Disposition: attachment; filename=\"$filename\"");
for all other browsers.

<< Back to user notes page

To Top