Oh, OK. You can do that in a php widget. You can just do something like:
PHP Code:
ob_start();
include("radio_stats_martin.php");
$martin = ob_get_contents();
ob_end_clean();
ob_start();
include("radio_stats_alex.php");
$alex = ob_get_contents();
ob_end_clean();
$output = "<table><tr><td>$martin</td><td>$alex</td></tr></table>";
If you wanted you could use a template, maybe like this:
PHP Code:
ob_start();
include("radio_stats_martin.php");
$stats['martin'] = ob_get_contents();
ob_end_clean();
ob_start();
include("radio_stats_alex.php");
$stats['alex'] = ob_get_contents();
ob_end_clean();
$templater = vB_Template::create('radio_stats');
$templater->register('stats', $stats);
$output = $templater->render();
Then create a radio_stats template with whatever html you want and put {vb:raw stats.martin} or {vb:raw stats.alex} wherever you want them.
BTW, I don't know why I used $martin and $alex in the first one but a $stats array in the second one - you could do it either way in either example).