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 に答える