Thanks SO Much Jehy! I’m very new at this, so i didn’t see that!!
I put it in like this and it is beautiful:
<?php
global $user_ID;
if(!$user_ID ) :?>
Welcome, Guest
<?php else :?>
Welcome Back, <?php
global $current_user;
if ( isset($current_user) ) {
echo $current_user->user_login;
}
?>
<?php endif;?>