Okay, so would this work..........?
$result = mysql_query("SELECT username, Count(*) FROM Online GROUP by ID;");
while($r = mysql_fetch_array($result)) {
$User = $r[username];
The value of $User should give me the member with the most entries, am I right?