Search code examples
phphtmlhtml5-audio

how to display and play html5 audio in dot php file?


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>

Solution

  • 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