I've run into a weird problem, I can print_r()
my variable and it produces the following:
print_r($_SESSION['userdata']);
outputs: Array ( [0] => Array ( [id] => 1 [username] => admin [firstname] => carl [lastname] => wirkus [password] => password [admin] => 1 [staff] => 0 [tenant] => 0 [email] => test@test.com )
However when I try to echo the username with:
echo "You are currently logged in as: " . $_SESSION['userdata']['username'] . "<br>";
outputs: You are currently logged in as:
What have I done wrong?