Wow - fast response - thanks!
I changed the news.php around:
PHP Code:
<?php
error_reporting(E_ALL & ~E_NOTICE);
$globaltemplates = array('news','news_header','news_desc');
require_once('./global.php');
eval('$navbar = "' . fetch_template('navbar') . '";');
$item_title = "test1";
eval('$item_title = "' . fetch_template('news_header', 0, 0) . '";');
eval('print_output("' . fetch_template('news') . '");');
?>
Still doesn't print my item_title. Confused. :/