Hola,
Tengo el siguiente problema:
La base de datos
es
categoria Enero Febrero Marzo ......Totales
Salarios 00 00 00
Irpf 00 00 00
Gas 00 00 00
---
---
Total 00 00 00
La cual tiene guardado los valore por meses y categorias el vaciado de estas estan bien lo que necesito es que me de los totales po fila y por columna.
Si alguien me puede sugerir como lo puedo hacer
dejo aquí el programa
Código PHP:
Ver original<?php
include("conexion.php");
$consulta=("SELECT * FROM gastos ORDER BY categoria");
?>
<?php
$tr_empresas="";
{
$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>
</tr>
<tr>
<td><br></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>
<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>
</body>
</html>
Gracias y saludos