|
|
Declaration of a variable
La déclaration des variables se fait à l'aide des accolades {} au sein de votre fichier template. |
<html>
<body>
{my_variable}
</body>
</html>
|
Attention ! |
The name of the variables must not possess one of these characters """, "'", "* ", " ", "\ n", "\ t."
Php variable can be included in your template as here {$variable}. |
|