I will try my best to explain this, I have the following array which has multiple values. I am trying to use isset to check if two values are within the array. I have followed the php documentation here: http://php.net/manual/en/function.isset.php
$nfl = array(#stands for national footbal league
'patriots' => 'New England Patriots',
'jets' => 'New York Jets', etc..........)
if(isset($nfl[$team11][$team12]) )
{
# my code is here
}
If I use only one team it works
if(isset($nfl[$team]))
Can anyone help me please?