I do not understand, I have such a problem here. PHP refuses to see the value in the array, but it is there, here is a screenshot of the dumps:

Code:
var_dump($tm[0]); echo '<br>'; var_dump($tm[1]); echo '<br>'; var_dump($teams[$tm[0]]); echo '<br>'; var_dump($teams[$tm[1]]); echo '<br>'; var_dump($teams); And I don’t understand why $teams[$tm[0]] is searched normally, but $teams[$tm[1]] not. Although everything is identical, the names are the same, the problem is only with $teams[$tm[1]] .
Help, who can, please :)
Thank you very much in advance)
Comments:
