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
PHP Code:
eval('print_output("' . fetch_template('test') . '");');
every thing worked ok , but the problem
it discarded all the codes after the
eval function
for example
PHP Code:
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 ?