Hi, I have a really simple question .. again

What must I enter when I want to show the specific user's information?
Say, i have logged in as 'King' (which is the username). By right, When the player first logs in he will get directed to a page that should say 'Hello King!'
However, right now it shows 'Hello Bot' instead, because Bot is the first user on my table.
This is my code right now if you want to see:
CODE
<?php
mysql_connect("localhost", "USER", "PASSWORD") or die(mysql_error());
mysql_select_db("DATABASE") or die(mysql_error());
$result = mysql_query("SELECT * FROM members")
or die(mysql_error());
$row = mysql_fetch_array( $result );
echo "Hello ".$row['username'];
?>
So what can I do to make this query .. personalized? Such that if i log in as king it will show 'Hello King!' and if I log in as queen it will show 'Hello Queen!' etc.
Thanks in advance.