Possible Duplicate:
In PHP, is there a function that returns an array made up of the value of a key from an array of associative arrays?
Several values stored in one single row in an array like this:
Array
(
[data] =>
Duration: 1 Month
Name: James Foo
Category: Info Tech
)
Question:
How could I extract and echo the values from [data] separately? i.e. display only Category: Info Tech
?