View Single Post

  #1 (permalink)  
Old 07-08-2003
Jwulff
 
Posts: n/a
Default Removing Arrays With Certain Keys From Larger Array

I have an array exampled below. I want to remove and use certain nested
arrays from the larger array where the key == title, size, day, etc... How
does an idiot like myself accomplish this?

Array
(
[0] => Array
(
[0] => title
[1] => by Month for Melvin
)

[1] => Array
(
[0] => Jan-99
[1] => 5286.69
[2] => 4687.89
[3] => 88.71
[4] => 98.05
[5] => 9.04
)
)


Reply With Quote