Access array with same name $userinfo
inside a php function
<?php
$userinfo['name'] = "bob";
$userinfo['lastname'] = "johnson";
function displayinfo() {
//not working
echo $userinfo['name']
//global also not working
echo global $userinfo['lastname'];
}
displayinfo();
?>
how to acess the arrays in the $userinfo
var since it has more than one array in the same variable name?
echo $userinfo['name']
//global also not working
echo global $userinfo['lastname'];
both do not working.