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']; 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 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> </tr> <tr> </tr> </page> <?php $pdf = new HTML2PDF('L', 'A4', 'es'); $pdf->writeHTML($content); $pdf->pdf->IncludeJs('print(TRUE)'); $pdf->Output('lista.pdf'); ?>