0

我正在使用 aptana 创建一个移动网络应用程序。它在 html5 中,我试图在其中嵌入一些 PHP,以便进行一些服务器调用。开始我只是想在我的 html5 中做一个简单的 echo 语句。这个嵌入的 echo 语句有什么问题,以至于它不起作用?

<!DOCTYPE html>
<html>
<head> 
    <title>My Page</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
    <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
    <body>
    <div data-role="page" class="type-home">
        <div data-role="header"> 
        <h1>JQM : Customize ListView</h1> 
            </div>
            <div data-role="content">
                <?php echo 'While this is going to be parsed.'; ?>
            <ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="a">
                <li data-role="list-divider">Overview</li>
        <li><a href="#"> <h1>Country Name : Thailand </h1></a></li>
        <li><a href="#"> <h1>Country Name : China </h1></a></li>
        <li><a href="#"> <h1>Country Name : Malaysia </h1></a></li>
        <li><a href="#"> <h1>Country Name : India </h1></a></li>
        <li><a href="#"> <h1>Country Name : Indonesia </h1></a></li>
        </ul>
            </div>
        </div>
    </body>
</html>
4

1 回答 1

0

php 语句在服务器端工作。因此,如果您的服务器有 php 并正在运行它,则可以对其进行处理。

要制作由php处理的文件,在从服务器输出期间,它必须具有文件扩展名

afile.php

不是

afile.html

因此服务器将调用 php,而 php 将运行与其相关的命令。

于 2013-04-28T16:28:36.697 回答