I have a little problem with using the php include() within user defined tags...
like in cmsms manual descriped you can add php code via user defined tags into your cmsms page. I tried hard, but it is not working.
This is the code I just wanna add:
Code: Select all
<?php $site="true"; include ("/home/www/web23/html/tristat/index.php"); ?>
Therefor I changed the code in the following, because with the following adress, it works in the firefox address line.
Code: Select all
echo 'Start TriStat<br>' ;
include ("http://web23.mis19.de/tristat/index.php?site=name");
echo 'End TriStat' ;
Do have a clue why?