I have some audios on my server and I want to put them online so that it is possible for the client side to have access both to listen and to download. I'm working with php and a linux server, a debian version.
<td>
<audio controls="controls">
<source src="teste.mp3" type="audio/mp3" />
</audio>
</td>
This is an example found on the internet, but when I put the path of my file I can not access it, either to download or listen.
So what's the best way to be able to download and listen online to a wav file from my server in an online application?