我的PHP代码只是我的html中的注释

时间:2010-11-15 22:45:12

标签: php javascript html comments

对不起,伙计们这可能很简单,但我现在已经太晚了。我有一个基本的html页面,上面有一些javascript,当我尝试将任何php放入正文时,它会将其作为注释读取。

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

1 个答案:

答案 0 :(得分:10)

听起来你要么没有安装PHP,要么你没有使用调用PHP引擎的文件扩展名 - 你的文件是Blah.php吗?

要检查的一些事项:

  • 您是从Web服务器(非本地)提供文件
  • 服务器安装了PHP
  • PHP配置为处理您正在使用的文件类型(通常为.php)
  • 使用<?php phpinfo(); ?>创建一个新文件并提供服务应该会为您提供有关PHP安装的大量信息。
  • 如果您有权访问服务器,则应该能够从命令行/ shell
  • 运行PHP