mirror of
https://github.com/fenom-template/fenom.git
synced 2023-08-10 21:13:07 +03:00
18 lines
258 B
PHP
18 lines
258 B
PHP
<?php
|
|
|
|
function template_subtpl($tpl) {
|
|
|
|
if($tpl["user"]["name"]) {
|
|
echo 'My name is '.$tpl["user"]["name"];
|
|
} else {
|
|
echo 'I haven\'t name :(';
|
|
};
|
|
?>
|
|
|
|
Ok.
|
|
|
|
My email <?php echo $tpl["user"]["name"].'. It is great!'; ?>
|
|
|
|
<?php
|
|
}
|
|
?>
|