I was reading an article posted here about this
QuoteI've made a (template) page (http://mywebsite/forumframework/)where only my website framework is showed and a tag where the body comes (forumcontent). So what I do is I grep the framework and place it around the forum.
The code is very simple, just 2 lines in sources/template.php almost on the bottom of the page above the "Compression and output" comments.
$framework = file_get_contents("http://mywebsite/forumframework/");
$this->body = str_replace("forumcontent",trim($this->body),stripslashes ($framework));
Can anyone explane this a bit better ?
Thank you.

