MyBB Community Forums

Full Version: Username Cookie
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
If I want to create a feature that, for simplicity's sake, writes the username of the user, what is the name of the cookie variable that does it? is it $_COOKIE["name"] or something? Is it different for Admins?
You mean to print the end user's username on his screen ?
$mybb->user['username']
To be exact, I am creating a chat function and want the name of the user to appear before his message.

Is it that exactly? So, for example, for me $mybb->user['username'] = Harland?
Yup. Simply include the global.php file and you're done Big Grin
Thanks!