uh... ok ok, so you are using MySql for the db right? Anyways.. I am assuming you know how to connect to the database, and you are just wanting to know the query ya need to throw...
$sql = "SELECT * FROM tablename WHERE name='$username'";
$query = mysql_db_query("db", $sql);
then...
$whatever = mysql_fetch_array($query);
echo $whatever['df'];
echo $whatever['rk'];
etc... um, That should do it, although there is a bit of missing code, just assuming you know the rest. smiles