Hola a todos y gracias por la ayuda:
Como puedo hacer para que la sucursal me aparezca una sola vez para todas las marcas que hay en la sucursal y no se repita como en la imagen (estoy trabajando con html2pdf)
Código PHP:
Ver original<?php
require_once 'config.php';
$fecha1= $_GET['fecha1'];
$fecha2= $_GET['fecha2'];
$conexion = mysqli_connect($cfg['db_host'],$cfg['db_user'],$cfg['db_pass'],$cfg['db_name']); if(!$conexion)
{
echo "No se ha establecido la conexion>";
}
?>
<page>
<table border='0.5'>
<tr>
<th style="width: 10%">N° Ticket</th>
<th style="width: 10%">Marca</th>
<th style="width: 10%">Fecha ingreso</th>
<th style="width: 10%">Fecha final</th>
<th style="width: 5%">Precio</th>
<th style="width: 5%">(columna de verificación)</th>
</tr>
<?php
$conexion = mysqli_connect($cfg['db_host'],$cfg['db_user'],$cfg['db_pass'],$cfg['db_name']); if(!$conexion) {
echo "No se ha establecido la conexion>";
}
$sql = "SELECT productos.num_ticket, productos.marca, productos.fecha_ingreso, productos.fecha_fin, productos.precio, (sucursales.descripcion)
FROM productos, sucursales
WHERE sucursales.id_sucursal = productos.id_sucursal
AND DATE( fecha_ingreso )
BETWEEN '$fecha1'
AND '$fecha2'
GROUP BY productos.num_ticket, productos.marca, productos.fecha_ingreso, productos.fecha_fin, productos.precio, sucursales.descripcion
ORDER BY sucursales.descripcion
/*group by sucursales.descripcion*/
LIMIT 0 , 30";
?>
<tr>
<td style="width:10%"><?php echo $row['num_ticket']; ?></td>
<td style="width:10%">
<?php echo utf8_decode($row['marca']); ?></td>
<td style="width:10%">
<?php echo utf8_decode($row['fecha_ingreso']); ?></td>
<td style="width:10%">
<?php echo utf8_decode($row['fecha_fin']); ?></td>
<td style="width:5%">
<?php echo utf8_decode($row['precio']); ?></td>
<td style="width:5%">
<?php echo utf8_decode($row['descripcion']); ?></td>
</tr>
<tr>
<td style="width:5%" colspan='5'>Sucursal:
<?php echo utf8_decode($row['descripcion']); ?></td>
</tr>
</page>
<?php
require_once(dirname(__FILE__).'/html2pdf.class.php'); $pdf = new HTML2PDF('L', 'A4', 'es');
$pdf->writeHTML($content);
$pdf->pdf->IncludeJs('print(TRUE)');
$pdf->Output('lista.pdf');
?>