Home | Online Examples | Documentation | Forum | Page of Project | Download

TPLN Manual

Template files

Declaration of a variable
Declaration of a bloc
Before beginning

 

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}.
TopTop