My question to you is how are you trying to display the results?
$sql = "select min(score) as min_score from rounds where username='$user' and course='$course' ";
$row = mysql_fetch_array($sql);
echo $row["min_score"];
OR
$sql = "select min(score) from rounds where username='$user' and course='$course' ";
$min_score = mysql_result($sql,0,0);