I have the following problem: In a website that I developed for a client, it contains a page for downloading audio, follows code for downloading the audio:
<a href="<?php print base_url(); ?>web_files/uploads/radio/<?php echo $audios->audio; ?>" download="<?php echo $audios->nome; ?>" target="_blank">
<button class="btn botoes_play_ouvir botao_saber_associacao">
<p>Baixar</p>
</button>
</a>
The problem is that on the page, it contains about 20 files in list format for download and files range from 5 to 18MB. When I click on download, the website is processing, as if it wanted to run the audio instead of downloading.
Would anyone have any tips on how I can improve this?
If you would like to view the problem, follow the link on the website: Click here