Try this:
Code:
ob_start();
include('/var/www/virtual/htdocs/echo.php');
echo $back;
$output = ob_get_contents();
ob_end_clean();
vB_Template::preRegister('template',array('back' => $output));
but change 'template' to the name of the template where you want to include the output.
(you may not need the ob_get_contents(), but I'm not sure if the echo script creates any output other than the $back value).