I have another php page on my site.
I would like to put this page into a content island but can't seem to get it right.

First Attempt
__________
/* PHP CODE HERE, IF NECESSARY */
$text = include 'gb_news.php';
/* DO NOT CHANGE THE LINE BELOW */
$body = <<<EOF
$text;
EOF;
/* DO NOT CHANGE THE LINE ABOVE */


Second Attempt:
__________
/* PHP CODE HERE, IF NECESSARY */

/* DO NOT CHANGE THE LINE BELOW */
$body = <<<EOF
include 'gb_news.php';
EOF;
/* DO NOT CHANGE THE LINE ABOVE */
_____________

Any advice?

Just for fun whats on the gb_news.php page... its this.

<?
$curl_handle=curl_init();
curl_setopt($curl_handle,CURLOPT_URL,'http://gamebuilder.info/ctpreview.php');
curl_exec($curl_handle);
curl_close($curl_handle);
?>

gamebuilder.info is a different server so I needed to use the CURL to get the page for security reasons.

The actual page getting this data works.
http://www.clickteam.com/epicenter/gb_news.php

but how do I get the custom island to display it?