Here is my array that prints to screen.
Array
(
[original_title] => My Title
[genres] => Array
(
[0] => Array
(
[id] => 18
[name] => Drama
)
[1] => Array
(
[id] => 14
[name] => Fantasy
)
[2] => Array
(
[id] => 10756
[name] => Indie
)
)
[vote_average] => 6.8
[vote_count] => 11
)
I am able to pull the values from the initial array like so:
echo"<br>Title: ";
print_r($pelinfo['original_title']);
Which outputs Title: My Title
I want to be able to add all genres by name.
Genres: Drama, Fantasy, Indie
Any help?