Face problem while downloading PDF file with IE 6
Dear Friend,
I face problem while downloading PDF file with IE 6.
When I click on PDF icon it will asked for Save, Open, Cancel popup window option.
If I save file on disk then it is with IE 6. But when I click on Open it will display Error while opening PDF file after few second (temporary download).
However code will work fine with IE 7. Is anybody help me ?
$filename = $first_name . "_" . $last_name . "_" . $row_data['ResumeID'] . ".pdf";
$filepath = ORIGINAL_PDF . $first_name . "_" . $last_name . "_" . $row_data['ResumeID'] . ".pdf";
header('Content-Length: ' . strlen($row_data['ResumeInfo']));
header("Content-type: " . $row_data['ResumeType'] . "");
header("Content-Disposition: attachment; filename=$filename");
readfile($filepath);
Thanking you,
Snowby Dave
|