Hi
It's easier especially if the tables are the same throughout multiple pages to create a file containing the information needed for the layout of the table and then where the tables are required use PHP's include function.
example:
<body>
This is an example
<?
include("table.php");
?>
</body>
I hope this helps.