The audio is not displaying in php file but the same audio is working on .html file. How to fix it can anyone help me please? Thanks
<audio control>
<source src="samples/narcon.mp3" type="audio/mp3">
</audio>
So one of the cool things about php is that you can close and reopen the tag when needed so if you have the php file open you can do something like this
<?php
some php code is here
?>
<audio control>
<source src="samples/narcon.mp3" type="audio/mp3">
</audio>
<?php
code after the html
?> //end of php file