I just spent some time tryin to figure this out and found out how, so thought i would share.
(hope this is the right section for this.)
<?php
ob_start();
include('index.php');
$content = ob_get_clean();
?>
then insert where ever you want it to show up.
<?php echo $content;?>
Hope this helps someone save some time.