html

How To Embed HTML In PHP

html display from php

In WordPress blog, the website default to “index.php” and I want to load an htm file instead. Here’s how I did it. <?php $htmlContent = <<<HTML <!DOCTYPE html> <html> <head> <body> … </body> </html> HTML; echo $htmlContent; ?>  

How To Embed Audio Player in HTML

html audio player

<embed name=”dognmonkey” src=”/music/dognmonkey/idog1.mp3″ autostart=”true” loop=”true”></audio> <audio src=”/music/dognmonkey/idogsunday.mp3″ controls></audio>