Code:
ob_start();
require("/path/to/include/file");
$file = ob_get_contents();
ob_end_clean();
add to 'phpinclude' template
Replace '/path/to/include/file' with the path to the file you want to include.
Then put '$file' in the templates where you want your included file to display

Hope that helps took me forever to figure out.