Script for Enabling PHP Autoplay Sound with HTML 5
How do I enable php autoplay sound through html 5 within my script so as to selectively generate sound on some content while discriminating others as instructed by code?
How do I enable php autoplay sound through html 5 within my script so as to selectively generate sound on some content while discriminating others as instructed by code?
Hello Bernard Fleck ,
Hope that my message finds you well.
You can use the audio tag that is supported by HTML 5 as the following:
<audio autoplay=”autoplay” controls=”controls”></audio>
Inside the audio tag you will enter the source with the proper SRC as the following:
<source src="Mymusic.ogg" />
OR
<source src="Mymusic.mp3" />
Inside your PHP code you will add the following code
<audio autoplay=”autoplay” controls=”controls”>
<source src="MySound.mp3" />
</audio>
Hope this solution will help.
Kind regards,