0

我在做这个练习。我无法理解给出的模板代码。当我复制粘贴代码并根据需要制作模板以便我可以运行它时,我收到了错误No template named index

$def with (greeting)

<html>
    <head>
        <title>Gothons Of Planet Percal #25</title>
    </head>
<body>

$if greeting:
    I just wanted to say <em style="color: green; font-size: 2em;">$greeting</em>.
$else:
    <em>Hello</em>, world!

</body>
</html>

为什么使用 $ 符号?我在 Windows 上,所以我应该编写相同的代码吗?

还有我应该在哪里存储templates/index.html文件?

在第一行中,他们实际上定义了一个函数def with (greeting)吗?

整个代码在语义上是否正确?

4

1 回答 1

0

你混淆了 HTML 和 PHP

PHP是这样声明的

<?php

PHP code in here.

?> 

$ 用于定义变量。如 :

$tablelegs = 4;

if($tablelegs = 4)
{
echo "Is a table with 4 legs";
}
else
echo "Is not a table";
于 2013-07-20T15:19:45.720 回答