Ok, website is slowly forming. I've got Trained doing graphical design and am working on the code myself. Trained has some nice gfx skillz, which is good    Currently, a few things are up already. Nothing much to look at - !@#$%^&*, it is not even well-formed HTML  But still... something of interest, maybe. A race records table, for example. Woot, I have both ?go race records!   http://deva.sszones.com   Man, that records table took a few hours of my time to get correctly working. Quite a nasty database query, heh (for a newbie like me). I've never used LEFT JOINs before...    SELECT t.Name AS TrackName, e.Time, e.Timestamp, e.GameId, e.Ship, p.Name AS PlayerName FROM race_tracks AS t
JOIN race_games AS g ON g.TrackId = t.Id
JOIN race_entries AS e ON e.GameId = g.Id
JOIN players AS p ON p.Id = e.PlayerId
LEFT JOIN (race_entries as e2, race_games as g2) ON (g2.TrackId = g.TrackId AND e2.GameId = g2.Id AND e.Time > e2.Time)
WHERE e2.GameId IS NULL ORDER BY e.Timestamp DESC;