public function LbuscarReporteGruposEtareos() { $o_DReporte = new DReporte(); $resultado = $o_DReporte->DbuscarReporteGruposEtareos(); $tabla = array(); $contador = 1; foreach ($resultado as $key => $value) { $tabla[$key][0] = $contador; $tabla[$key] = array_merge($tabla[$key], $value); $contador++; } return $tabla; }