What is the issue with playing music in Mozilla using PHP?

The issue with playing music in Mozilla using PHP is that Mozilla does not support the audio/mpeg MIME type by default. To solve this issue, you can use the audio/ogg MIME type which is supported by Mozilla for playing audio files.

<audio controls>
  <source src="audiofile.ogg" type="audio/ogg">
  Your browser does not support the audio element.
</audio>