Hallo,
Kann man dem Browser auch mehrere Files in einem Download senden?
IE habe ich nicht installiert, Moz kann es, Opera schmiert (allerdings berechtigt) ab und Konqueror zeigt die sourchen an... Zum testen: http://212.227.99.60/test.php
header('Content-Type: multipart/mixed; boundary="udfhhjhferhthjvjcxhjkhfu"');
echo "--udfhhjhferhthjvjcxhjkhfu\r\n";
echo "Content-Disposition: attachment; filename=phpinfo.html\r\n";
echo "Content-Type: text/html\r\n\r\n";
phpinfo(1);
echo "\r\n--udfhhjhferhthjvjcxhjkhfu\r\n";
echo "Content-Disposition: attachment; filename=huhu.txt\r\n";
echo "Content-Type: text/html\r\n\r\nhuhu";
echo "\r\n--udfhhjhferhthjvjcxhjkhfu--";
so geht es also nicht. Der sicherste weg geht immer noch über (I)Frames, wo Du pro angebotener Resource einen in ein Dokument einbettest.
Gruß aus Berlin!
eddi