I have the following data as an array, the dataset is actually much larger but this is just a sample...
Array
(
[0] => Array
(
[id] => 107
[displayname] => Test 11
[frontpage] => 0
)
[1] => Array
(
[id] => 201
[displayname] => Test 2
[frontpage] => 1
)
[2] => Array
(
[id] => 47
[displayname] => Test 82
[frontpage] => 0
)
)
I am trying to output a new array with just the 'displayname' value, seems really simple but I am struggling to find an example.