createElement('highscores'); $highScores->setAttribute('game', $_REQUEST['game']); $doc->appendChild($highScores); $rank = 1; while ($row = mysql_fetch_assoc($result)) { $highScore = $doc->createElement('highscore'); $highScore->setAttribute('id', $row['id']); $highScore->setAttribute('rank', $rank++); $highScores->appendChild($highScore); foreach (array('date', 'nick', 'score', 'time') as $tagName) { $highScore->appendChild($doc->createElement($tagName, $row[$tagName])); } } ?>