Log in

View Full Version : While Loop Using fetch_userinfo - 'Array' Displayed?


Mko
08-15-2012, 08:59 PM
Hey all,
When I try to do a While Loop, I have a line of code that looks like:

$username = fetch_userinfo($userid);


However, the output always displays 'Array' instead of the username.
Does anyone know how I can get around this?

Thanks,
Mark

kh99
08-15-2012, 09:13 PM
You need to do something like:

$userinfo = fetch_userinfo($userid);
$username = $userinfo['username'];

(or you could just use $userinfo[username] in your template).

Mko
08-15-2012, 09:56 PM
You need to do something like:

$userinfo = fetch_userinfo($userid);
$username = $userinfo['username'];(or you could just use $userinfo[username] in your template).
Haha whoops, silly mistake by me. I know it was something obvious.

Thanks for the help again haha :P