Hi there guys,
I've run into a stumbling block on one of my projects. I've integrated a chat system into a PHP-Nuke install. To view the who's chatting block, they have you include a php file via an iframe. Problem is that a lot of people are having problems viewing the iframe.
The way the blocks work is that the content is defined in the block:
$content = "block content"
My question: Is there a way to have $content = included/file.php ?
I tried
$content = "/included/file.php";
$content = /included/file.php;
$content("/included/file.php");
But as I'm sure you know, it didn't work
Could someone tell me how I might set $content to equal a file that needs to be included?
thanks,
json