aktuelle.kurse/m133/Weiteres/Modul_Unterlagen_133_VO/08 Uebungen/03 PHP Grundlagen/kapitel04/upload1.php

8 lines
234 B
PHP
Raw Normal View History

2022-02-24 09:37:43 +01:00
<?php
header("Content-type: ".$_FILES["datei"]["type"]);
header("Content-length: ".$_FILES["datei"]["size"]);
header("Content-disposition: inline;filename=".$_FILES["datei"]["name"]);
readfile($_FILES["datei"]["tmp_name"]);
?>