I am trying to make a very simple code. I have a php value that I am trying to display in a TPL file.
PHP code:
<?php
include 'photochanger.tpl';
$test='my text';
?>
TPL Code:
{test}
I can tell that there is a very simple solution. Could anybody tell me what adjustments should be made so I can display the value for test on my website through my TPL file?