Mit folgendem script stelle ich einen download bereit:
Wenn ich nun mit IE den Download anklicke (IE5.5) wird nicht die pdf-Datei runtergeladen sondern die aktive html-Datei.
Mit Mozilla gehts einwandfrei.
PHP Code:
$file=$_REQUEST["datei"];
header("Content-type: application/pdf");
header("Content-Disposition: attachment; filename=$file" );
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0,pre-check=0");
header("Pragma: public");
readfile ("pdf/" . $file);
Mit Mozilla gehts einwandfrei.
Comment