Hola
walterronny
Para centrar una tabla puedes usar estilos:
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
</head>
<body>
<table style="width:80%;margin:auto">
<tr>
<td>Celda</td>
</tr>
</table>
<div style="width:80%;margin:auto">
Capa
</div>
</body>
</html>
En el ejemplo te he puesto un div, porque otra opción puede ser meter el contenido de tu página dentro y así también saldrá centrado.
Saludos,