How to use php to output this html code? The html code is this.
<a href="#false" onclick="load_page('piano_programs.php')">Piano Programs</a>
but I want to use php to show this code
$program_name = "piano_programs";
echo "<a href='#false' onclick="load_page('$program_name'.php)">Piano Programs</a>";
but.....doesn't work, any idea ,thanks