Is there a way of INCLUDING (calling) php from a .TPL file??
Posted: Mon Jan 03, 2005 8:53 pm
I have a users online php file that I call (INCLUDE) from my main php menu but would also like to be able to track the people who go on my PHPBB forum, or links or product reviews database that run on .TPL (html) files.
The PHPbb forum executes from a .php file but is not just an htm file renamed to php rather it's an actual php script that executes the forum. And my review/links database program runs each from a seperate index.php and they too are scripts and not htm
From for main layout of the website I can use
since it's a HTM file renamed to php. But how can I do this for my other programs?
The PHPbb forum executes from a .php file but is not just an htm file renamed to php rather it's an actual php script that executes the forum. And my review/links database program runs each from a seperate index.php and they too are scripts and not htm
From for main layout of the website I can use
Code: Select all
<?
include("http://www.camarosource.ca/useronline.php");
?>