If your users are logging into Joomla and you need the username in a Joomla file such as a template file you can do the following:
$user = $JFactory::getUser();
if (!$user->guest) {
$username = $user->username;
}
if (!empty($username)) {
echo $username;
}