我正在进行this锻炼。
我无法理解给出的模板代码。
当我复制粘贴代码并根据需要制作模板时,我就可以运行它了
,我收到错误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)
?
整个代码在语义上是否正确?
答案 0 :(得分: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";