I have an array that looks like this when displayed with print_r:
Array ( [0] => car:BMW
[1] => airline: United
[2] => cpu:Intel )
I'm trying to explode the array on ":" so that I can separate the values between the semicolon. The problem is when I try print each word in a foreach loop, I just get a single word that says 'Array' instead of printing out:
car
BMW
airline
United
...
I'm stumped on what to do.