Genau, ich habe dafür ein BLOB Feld angelegt. Ich weiss, dass das kontrovers gesehen wird, wollte aber mal meine Erfahrungen damit machen.
Dateidownload mit header
Einklappen
X
-
Wie interpretierst Du denn den Tip von onemorenerd, der schreibt:
"Download in einem neuen Fenster/Tab zu starten und im alten gleichzeitig die nächste Seite zu laden"
Gruss
tobiGutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten
[color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)
Kommentar
-
Für das Download-Fenster window.open() und window.location.href() für das "alte" Fenster.
Gruss
tobiGutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten
[color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)
Kommentar
-
muss ich da zweimal mit onclick arbeiten?
Code:function weiter(url){ window.open(url,'Download'); window.location.href = 'login.php'; } <a href='login.php' onclick="weiter('download.php?id=abc.txt');return false;">abc.txt</a><br> <a href='login.php' onclick="weiter('download.php?id=cde.txt');return false;">cde.txt</a><br>
tobiGutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten
[color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)
Kommentar
Kommentar