I have looked at this code
$result = mysql_query ("select r.result_id, r.team1_id, t1.team_name_nick,r.team2_id,t2.team_name_nick,r.team1_score,r.team2_score, r.game_played from result as r left join team as t1 on (r.team1_id = t1.team_id) left join team as t2 on (r.team2_id = t2.team_id) where r.group_id = $list_group and r.comp_id = $comp_id order by r.list_order");
what is the r.result_id thing.... the feild is result_id so what the r. before it???