It really all depends on where your data is coming from on how you display it.
Let's say you has a session variable called "name" and it had "Bob" stored in it.
echo '<div>User: '.$_SESSION['name'].'</div>';
I used a div, because it's easier to type than a table (and "Web 2.0" :rolleyes🙂, but you can use a table.
If you got it from a database, you would do your database calls and store the data into an object or array, in this case "$array" or "$object".
echo '<div>User: '.$array['name'].'</div>';
echo '<div>User: '.$object->name.'</div>';
The user authentication part I leave up to you and a google search.
edit
Seriously now Brad. 😉