Jump to content

File download


jokerofsouls

Recommended Posts

Or if you don't want to use JavaScript you can use PHP.

 

<form action="download.php?file=file.zip" method="post">
<input type="submit" name="download" id="download" value="Download File" />
</form>

 

download.php

<?php
$file = $_GET['file']; //Get the file.

//You can do some error checking to see if the file exists, etc...

header("Content-Disposition: attachment; filename=\"" . basename($file) . "\"");
header("Content-Length: " . filesize($file));
header("Content-Type: application/octet-stream;");
readfile($file); 
?>

 

Good luck.

Link to comment
https://forums.phpfreaks.com/topic/127919-file-download/#findComment-662392
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.