Download-Script Probleme
lima-city → Forum → Programmiersprachen → PHP, MySQL & .htaccess
button
code
datei
disposition
download
file
folgendes problem
header
helfen
ordner
schlafen
skriptum
test
text
type
url
versuch
-
Hallo,
Ich habe folgendes Problem mit einem kleinen Download-Script:
Ich möchte, dass wenn man auf den Button "Download" klickt, der Download einer Datei, z.B. einer *.txt-Datei gestartet wird. Diese ist im Ordner "downloads" gespeichert.
So sieht mein Script aus:
<html> <head> </head> <body> <form method="post" action="test.php"> <input type="submit" value="Download"> </form> <?php if(!empty($_POST)) { $url = "test.txt"; $file = basename($url); header("Content-type: text/plain"); header("Content-Disposition: attachment; filename=\"$file\""); readfile($url); } ?> </body> </html>
Leider passiert überhauptnichts, wenn man auf den Button klickt.
Wer kann mir helfen?
MfG mermadalis -
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage
-
Kenn mich mit Download-Skripten nicht aus aber versuchs doch mal so:
<html> <head> </head> <body> <form method="post" action="test.php"> <input type="submit" name="download" value="Download"> </form> <?php if(isset($_POST["download"])) { $url = "test.txt"; $file = basename($url); header("Content-type: text/plain"); header("Content-Disposition: attachment; filename=\"$file\""); readfile($url); } ?> </body> </html>
-
Oh man... ich glaub ich sollte mal wieder schlafen ... :D
So muss es natürlich sein, jetzt klappts auch
Vielen Dank! -
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage