How can you tell if a user has cancelled a download which has been instigated from your site:
I have the following code which is used to download a file:
header("Content-type: application/octet-stream");
header("Content-type: application/force-download");
header("Content-Disposition: $Attachment filename=\"$TheFilename\"");
header("Content-Length: $TheFileSize");
Any ideas?
Many Thanks
BB