0
I have the following problem: On a website that I developed for a client, contains a page to download audio, follows code to download 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 some 20 files in downloadable list format and the files vary from 5 to 18MB. When I click on download, the website is processing, as if I wanted to run the audio instead of already downloading.
Would anyone have any tips on how I can improve this?
If you want to see the problem, follow the website link: Click here
Show, I just made a small change. I will keep it in the question for viewing.
– Maurício Krüger