Ok, funciona todo bien.
Dejo aquí lo que hice.
Código PHP:
Ver original<?php
$tr_empresas="";
$tr_totales="";
$gastos_vertical_1 = array(); $gastos_vertical_2 = array(); $gastos_vertical_3 = array(); $gastos_vertical_4 = array(); $gastos_vertical_5 = array(); $gastos_vertical_6 = array(); $gastos_vertical_7 = array(); $gastos_vertical_8 = array(); $gastos_vertical_9 = array(); $gastos_vertical_10 = array(); $gastos_vertical_11 = array(); $gastos_vertical_12 = array(); $gastos_vertical_13 = array();
$gastos_horizontal = array($row['01'],$row['02'],$row['03'],$row['04'],$row['05'],$row['06'],$row['07'],$row['08'],$row['09'],$row['10'],$row['11'],$row['12']); $tr_empresas.="
<tr>
<td align='center'>".$row['categoria']."</td>
<td align='center'>".$row['01']."</td>
<td align='center'>".$row['02']."</td>
<td align='center'>".$row['03']."</td>
<td align='center'>".$row['04']."</td>
<td align='center'>".$row['05']."</td>
<td align='center'>".$row['06']."</td>
<td align='center'>".$row['07']."</td>
<td align='center'>".$row['08']."</td>
<td align='center'>".$row['09']."</td>
<td align='center'>".$row['10']."</td>
<td align='center'>".$row['11']."</td>
<td align='center'>".$row['12']."</td>
<td align='center'>".array_sum($gastos_horizontal)."</td>
</tr>
<tr>
<td><br></td>
</tr>";
}
$tr_totales.="
<tr>
<td align='center'></td>
<td align='center'>".array_sum($gastos_vertical_1)."</td> <td align='center'>".array_sum($gastos_vertical_2)."</td> <td align='center'>".array_sum($gastos_vertical_3)."</td> <td align='center'>".array_sum($gastos_vertical_4)."</td> <td align='center'>".array_sum($gastos_vertical_5)."</td> <td align='center'>".array_sum($gastos_vertical_6)."</td> <td align='center'>".array_sum($gastos_vertical_7)."</td> <td align='center'>".array_sum($gastos_vertical_8)."</td> <td align='center'>".array_sum($gastos_vertical_9)."</td> <td align='center'>".array_sum($gastos_vertical_10)."</td> <td align='center'>".array_sum($gastos_vertical_11)."</td> <td align='center'>".array_sum($gastos_vertical_12)."</td> <td align='center'>".array_sum($gastos_vertical_13)."</td>
</tr>
";
?>
<style>
body{font-family:Arial, Helvetica, sans-serif; font-weight:bold;}
table.tabla_empresa{border:none;border-collapse:collapse}
table.tabla_empresa{background-color:#BFBFBF;width:120%;}
table.tabla_empresa th{background-color:#4D4D4D;color:#FFFFFF;border:1px solid #E6E6FA}
table.tabla_empresa td{background-color:#FFFFFF;color:#08285A;font-weight:bold;}
</style>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--
Design by Free CSS Templates
http://www.freecsstemplates.org
Released for free under a Creative Commons Attribution License
Name : Eponymous
Version : 1.0
Released : 20130222
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/>
<title></title>
<link href="css/paginacion.css" type="text/css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link href="css/menu.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="bg">
<div id="outer">
<div id="header">
<div id="logo">
<h1>
<a href="index.html"></a>
</h1>
</div><br><br>
<h2 style="font-weight:bold; color:#FF8E18; text-align:center; font-size: 36px;">Gastos por año</h2>
<p style="font-weight:bold; color:#FF8E18; text-align:center; font-size: 12px;"> Para imprimir exportar la base de datos a excel</p>
<!-- <form method="GET" action=""/>
Ingrese la fecha a buscar formato(aaaa-mm-dd)
<input type="date" size="32" value="" name="fechareg"/>
<a style="position:relative; margin: 0px 780px 0px;" href="contabilidad.php" >Volver</a>
</form>
-->
<br />
<div id= "centrar_tabla">
<table class='tabla_empresa'>
<tr>
<th>Descripcion</th>
<th>Enero</th>
<th>Febrero</th>
<th>Marzo</th>
<th>Abril</th>
<th>Mayo</th>
<th>Junio</th>
<th>Julio</th>
<th>Agosto</th>
<th>Septiembre</th>
<th>Octubre</th>
<th>Noviembre</th>
<th>Diciembre</th>
<th>Totales</th>
</tr>
<?php echo $tr_empresas;?>
</table>
<div id= "centrar_tabla">
<table class='tabla_empresa'>
<tr>
<th><---Totales---></th>
<th>Enero</th>
<th>Febrero</th>
<th>Marzo</th>
<th>Abril</th>
<th>Mayo</th>
<th>Junio</th>
<th>Julio</th>
<th>Agosto</th>
<th>Septiembre</th>
<th>Octubre</th>
<th>Noviembre</th>
<th>Diciembre</th>
<th>Totales</th>
</tr>
<?php echo $tr_totales;?>
</table>
</body>
</html>
De nuevo gracias y un saludo