1
I have the following exit:
   => [
        [ 0] [
            [0] "CELULA",
            [1] "LENNA                                 ",
            [4] "jul 01",
            [5] " 2015 12:00:00 AM",
            [6] "N",
        ],
        [ 1] [
            [0] "CELULA",
            [1] "ARI
            [4] "jul 01",
            [5] " 2015 12:00:00 AM",
            [6] "P",
        ],
        ...
     ]
I need a new array similar to this one only with the items [1] and [6] of this array.
=> [
        [ 0] [
            [0] "LENNA                                 ",
            [1] "N",
        ],
        [ 1] [
            [0] "ARI
            [1] "P",
        ],
       ...
     ]
						
Could format the data better?
– Ronny Amarante