Log in

View Full Version : Display vb style temaplate in non vb pages


alloly
03-05-2009, 01:52 AM
Hello ,
I want to display some templates from my forums in my site homepage

I included the global.php

I used this code to include the template in the site homepage

eval('print_output("' . fetch_template('test') . '");');

every thing worked ok , but the problem

it discarded all the codes after the eval function

for example

eval('print_output("' . fetch_template('test') . '");');
echo "Hello, World";


whenever I open the page it display only the template and discarded "Hello, World"


any recommendations ?