I am playing audio in mp3
format but I want to hide the mp3 url.
I'm using PHP
and I try this code but his is not working.
HTML
<audio controls>
<source src="mp3.php?id=1" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
PHP
<?php
$id = $_GET['id'];
if($id == 1){
echo '/path/to/audio.mp3';
}
?>
What is wrong with this code any suggestion.
How can I do that.
Thanks...