u would need to use an include() file to do that.
what you do is to save only the table written in php in a file called say table.inc or table.php.
then where ever u want to use this code just put this code in the page
include("table.php");
example
// table.php
<?php
echo "<table><tr><td>this is an include table</td></tr></table>";
?>
// somepage.php
<?php include("table.php"); ?>
reg
kevin