I'm trying get the values of an array but the maximum I can do is
$characters = $array['data']['results'];
Why can't I go deeper in the array like doing $characters['stories'] for example?
See picture as an example. So if I want to show in my page the name of the series, how can I bring this value? I know it's a beginner question. A colleague told me to use array_key_exists but in other answers in stackoverflow people suggest other things, is there an unique way or a more correct way to do that? By the way, I tried to adapt answers and it didn't work.