Hi,
I would like to replace customized tags found in a template file with an includes like this :
Code:
$code_html = str_replace("{_layout_modules_}", include("module.php"), $code_html);
But with this method, in module.php, I have to store the parsed php into a variable and then use "return".
My question is : is there a simpler way ?
Thanks !