OK, if this works:
Code:
ob_start();
include('table.php');
$includedphp = ob_get_contents();
ob_end_clean();
Then you should be able to do this:
Code:
ob_start();
// code from table.php here
$includedphp = ob_get_contents();
ob_end_clean();
but you have to remove <?php from the begininng, and ?> from the end (if it's there).
If what you're saying is that you're worried about someone going directly to table.php, then you could put a check at the beginning of table.php (after the <?php) like:
Code:
if (!defined('THIS_SCRIPT')) die("permission denied.");