phpbar.de logo

Mailinglisten-Archive

[php] Download starten mit PHP

[php] Download starten mit PHP

Dirk Schwarz schwarz at digital-identification.com
Mit Nov 16 14:52:22 CET 2005


php-bounces at phpbar.de <mailto:php-bounces at phpbar.de> wrote:
> Hallo,
> 
> ich möchte den Inhalt des aktuellen PHP Scripts zum download anbieten.
> Wenn ich mit unten stehenden Code den Downlaod startte ,
> bekomme ich die
> Meldung, das die Datei nicht gefunden wird

Das ist ein Problem im IE, mit Firefox funktioniert der Download!

Versuche es mal so:

<?php
set_time_limit(0);  //nur bei großen Dateien
header("Content-Type: application/octet-stream");
header("Cache-Control: ", true);
header("Content-Disposition: attachment; filename=\""myfile.php\"");
echo $report;
?>

Gruß

Dirk
+++

php::bar PHP Wiki   -   Listenarchive