Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

csv files downloading as txt when using download attribute of <a> tag in PHP

I am trying to download File with csv extension using download attribute but it’s downloading file with .txt extension.

Here’s my code

<a href="log_files/log_files/abc.csv" download><button type="button" class="btn btn-success">Download</button></a>

Help me if you know the solution

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

I had the same problem, just add the filename with .csv extension in the download attribute, like below

<a href="log_files/log_files/abc.csv" download="abc.csv"><button type="button" class="btn btn-success">Download</button></a>
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading