Hi!
I want to use some PHP Code in a file of the html mod.
But if I try to add php code there, it doesn't works!
I just want to include a file from the local server.
Has anybody an idea for this problem, so that I can add this php code:
<?php include("file.php"); ?>
Thx!
Posts: 9
Add the code in your /modules/html/templates/[local/]your.tpl like that:
{php}
include("file.php");
{/php}
KingOfN00bz