Yo probaría con algo como lo siguiente:
Código PHP:
Ver original$rs = mysql_query("SELECT * FROM productos_stock ORDER BY tipo, marca");
$tipo = $row['tipo'];
if ($tipo != $tipo_anterior){
echo '<h1>'.$tipo.'</h1>';
$tipo_anterior = $tipo;
}
<tr>
<td><?php echo $row['ref_interna'];?></td>
<td><?php echo $row['nombre'];?></td>
<td><?php echo $row['marca'];?></td>
<td><?php echo $row['capacidad'];?> Kgs.</td>
</tr>
<? }?>