there are two arrays:
$players = array(
"23" => "Michael Jordan",
"32" => "Michael Johnson"
);
$current_player = array(
"player_id" => "23",
"age" => "22"
);
how can i get the name of the player with player_id 23
can anyone help me out?
thanks in advance.
fariba
$players = array(
"23" => "Michael Jordan",
"32" => "Michael Johnson"
);
$current_player = array(
"player_id" => "23",
"age" => "22"
);
how can i get the name of the player with player_id 23
can anyone help me out?
thanks in advance.
fariba