Código PHP:
$sql_consulta = SELECT tipo, sum(cantidad), COUNT(rangos) FROM miTabla GROUP BY tipo WITH ROLLUP;
$resultado ....
while ($columna = mysql_fetch_array($resultado, MYSQL_NUM)) {
$col1 = $columna[0];
$col2 = $columna[1];
$col3 = $columna[2];
printf("%s:%s", $col2, $col3);
}
Gracias...