Benim PHP kodu benim html sadece bir yorumdur

0 Cevap php

Üzgünüm çocuklar bu muhtemelen oldukça basit, ama ben yol çok geç kadar oldum. Bunun üzerine bazı javascript ile temel html sayfası var ve ben vücudun herhangi php koymak çalıştığınızda bir açıklama olarak okur.

    <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>

0 Cevap