I imagine your little script is just printing to stdout, so you'd probably need to do some output buffering. Something like this might work:

PHP Code

ob_start();
include '/path/to/gb_news.php';
$body = ob_get_contents();
ob_end_clean();