If I know the query only returns one row, and more specefically, in this case one value,
$full_name = database::query("SELECT concat (fname, ' ', lname) from cr WHERE email='$email'");
how do I get that value into a single variable. Database::query returns the value form mysql_query. The query above insert "Resource ID 4" in to mysql table.