Alright. I've searched and search and cannot find the solution to my problem.
I'm basically trying to create a wrapper.
PHP Code:
eval('print_output("' . fetch_template('clanRoster_start_page') . '");');
echo "test.";
eval('print_output("' . fetch_template('clanRoster_end_page') . '");');
Basically, 'clanRoster_start_page', displays the vBulletin header, navigation bar, and opens a table.
'clanRoster_end_page', closes the table, and displays the footer, etc.
----
It seems that the script is stopping after it displays the 'clanRoster_start_page' template. Anyone have any idea?