我的PHP代码只是HTML内容中的一个注释

2022-03-15 00:00:00 comments php javascript html

我有一个包含一些JavaScript代码的基本HTML页面,当我尝试将任何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 code in here -->

            <?php
                echo "test php";
            ?>

            <!--
                ...
                Main code for a table here
            -->
        </div>

    </body>
</html>

php>推荐答案

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

需要检查的事项:

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

相关文章