echo没有出现在我的php页面上?

时间:2015-09-08 17:01:58

标签: php

这是我的主页代码。我试图测试PHP正在使用'echo',但回声文本没有出现在主页上。我已将文件保存为php,但回显“最近的帖子1”未显示在页面上

<head>
<title>1WD HTML5 theme</title>
<meta charset="utf-8" />

<link rel="stylesheet" href="style.css" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<header class="mainHeader">
    <img src="img/logo.png">
    <nav><ul>
        <li class="active"><a href="#">Home</a></li>
        <li><a href="#">Forum</a></li>
        <li><a href="#">Login</a></li>
        <li><a href="#">Sign up</a></li>
    </ul></nav>
</header>

<div class="mainContent">
    <div class="content">   
            <article class="topcontent">    
                <header>
                    <h2>Recent Posts</h2>
                </header>


                <content>
                        <?php
                echo "recent post 1";
                echo "recent post 1";
                echo "recent post 1";
                echo "recent post 1";
                echo "recent post 1";
                echo "recent post 1";
                echo "recent post 1";
                echo "recent post 1";
                echo "recent post 1";
                echo "recent post 1";
                echo "recent post 1";
                ?>

                </content>

            </article>


    </div>

            <aside class="top-sidebar">
                <article>
                <h2>Top Sidebar</h2>
                <p>test</p>
                </article>
            </aside>

            <aside class="middle-sidebar">
                <article>
                <h2>Middle Sidebar</h2>
                <p>test</p>
                </article>
            </aside>                


</div>



</body>
</html>

2 个答案:

答案 0 :(得分:3)

好吧,我无法评论。

但如果您没有服务器支持PHP,则无法运行该文件。

我的意思是你不能在你的“PC”中运行文件,你需要将文件上传到web主机或将你的计算机设置为服务器。 (您可以安装WampServer,XAMPP等。)

答案 1 :(得分:2)

您的代码在格式上显示正确,但您不能在没有服务器的情况下显示PHP代码。如果您通过在浏览器中打开文件来测试它,它将无法正常工作。您需要免费查看XAMPP是一个有用的跨平台服务器解决方案,或者如果您有网站托管服务提供商,则需要在该服务器上测试您的代码。希望有所帮助。

以下是XAMPP的一些信息。