how to download a file in php?
There are various methods to download a file in PHP or html:
<form method="get" action="file.doc">
<button type="submit">Download!</button>
</form>
you can also trigger a download with the HTML5 download
attribute.
<a href="path_to_file" download="proposed_file_name">Download</a>