i have an array
Array ( [0] => Array ( [username] => phizy [id] => 1 ) [1] => Array ( [username] => rapik [id] => 4 ) [2] => Array ( [username] => asas [id] => 5 ) )
how do i extract and put them in php variables?
<li><?php $username." with id of ".$userid."</li>";
thank you