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 ?
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 ?