Code Help

In my site I have this code:

<ul class="login">
<li class="left"> </li>
<li><?php if(Auth::LoggedIn() == false){ echo 'Olá Visitante!'; }else{ echo 'Olá '
                   .PilotData::GetPilotCode(Auth::$userinfo->firstname, Auth::$userinfo->firstname); } ?>

But they show:

What changes should I do to remove the four zeros ?

try this

  • <?php if(Auth::LoggedIn() == false){ echo 'Olá Visitante!'; }else{ echo 'Olá '.Auth::$userinfo->firstname.' '.Auth::$userinfo->lastname; } ?>

Perfect!

Thanks!