PDA

View Full Version : Get Username from ID


alexgeek
01-01-2008, 08:00 PM
Is there a function that will return the username of the userid passed to it?
something like:

$id = 1;
$user = get_username_from_id($id);
echo $user; //output "alexgeek"

Opserty
01-01-2008, 08:25 PM
$id = 1;
$userinfo = fetch_userinfo($id);
echo $userinfo['username']; //output "alexgeek"

alexgeek
01-01-2008, 09:23 PM
Cheers!