I have an array called movies.
It has a value called description, which is an array.
How would I loop through this? This is what I have tried, $movies being the movies array obviously:
foreach ($movies[description] as $key => $value) {
print('Key : '.$key.' Value : '.$value.'<br />');
}
It doesn't print anything.
It has a value called description, which is an array.
How would I loop through this? This is what I have tried, $movies being the movies array obviously:
foreach ($movies[description] as $key => $value) {
print('Key : '.$key.' Value : '.$value.'<br />');
}
It doesn't print anything.