Php Variables and Constants
The declaration of Php variables are possible with TPLN inside your template files :
Example with simple Php variable :
<html> <body> {$php_variable} </body> </html>
Example with array Php like $_SESSION, $_GET, $_POST :
<html> <body> {$_SESSION['variable']} </body> </html>
Example with Php constants :
<html>
<body> {CONST::MY_CONSTANT} </body> </html>
Php variables must be set before opening your template