Mi código PHP es solo un comentario en mi html

Lo siento chicos, esto es probablemente bastante simple, pero he estado despierto demasiado tarde ahora. Tengo una página html básica con algunos javascript, y cuando trato de poner cualquier php en el cuerpo, lo lee como un comentario.

    <html>
    <head>
    <link rel="stylesheet" href="style.css" type="text/css" media="screen">
    <script type="text/javascript" src="jquery-1.3.2.min.js"></script> 
    <script type="text/javascript" src="jquery.tablesorter.min.js"></script> 
    <script type="text/javascript" src="jquery.tablesorter.pager.js"></script> 
     <script type="text/javascript">
     $(function() {
      $("table")
       .tablesorter({widthFixed: true, widgets: ['zebra']})
       .tablesorterPager({container: $("#pager")});
     });
     </script>
    </head>
    <body>
    <div id="main">
    <h1>Demo</h1>

    php in here

    <?php  
    echo "test php";
    ?>

...
main code for a table here
</div>
</body>
</html>

Respuestas a la pregunta(1)

Su respuesta a la pregunta