I have this array, and I want go get rid of those indexes that have no value in them, so for example in the index[0] I want to get rid of the [0] and [4] so I would have a 3 value array and so on...
Array
(
[0] => Array
(
[0] =>
[1] =>
[2] => 7
[3] =>
[4] => 8
[5] =>
)
[1] => Array
(
[0] =>
[1] =>
[2] => 9
[3] => 10
[4] =>
)
[2] => Array
(
[0] =>
[1] => 11
[2] => 12
[3] =>
)
)