hab da mal wieder ein kleines problem, und zwar geht der folgente code nicht im IE.
$Datei=$row['url'];
$Datein = basename($Datei);
$Grosse = $row['size'];
header('Content-Type: application/force-download');
header('Content-Disposition: attachment; filename='.$Datein);
header('Content-Length: '.$Grosse);
readfile($Datei);
thx im vorraus

