I would set a $_SESSION variable after the user is verified. So on your User.php page, after you verify the user is valid...
if($user){
$_SESSION['u_username'] = $_POST['u_username'];
}
Then that makes the $_SESSION['u_username'] available to any and all scripts and you can echo it by simply using:
echo "Hello ".$_SESSION['u_username']."!";