Anhang adden
Datei als Attachement speichern
|
Script: |
<?PHP
$application="Datei
als Attachement speichern"; //
Dateiendung
$dateiname="Downloadfunktionen"; //
Ohne . und ohne Dateiendung
header("Content-type:
application/$application");
header("Content-Disposition:
attachment; filename=".$dateiname.".".$application."");
readfile("$dateiname.$application");
?>
|
|