Newbie question - data entry form for team/match players
Hi all, sorry, but I have a newbie question which is probably PHP or Javascript or Ajax related, but the data is held on MySQL tables so I'll start here if that's o.k.?
Essentially I am converting my database from OooBase (previously MSaccess) and want to mimic a form/subform combination that I use for data entry.
I have 3 tables:
Games
which has the fields 'gameid', 'MatchDate', 'Opponents', 'PtsFor', 'PtsAgainst',...etc
Players
Which has the fields 'playerID', 'Firstname', 'Lastname',.. etc
Game_players
Which links the 2 tables and so has the fields:
'gpID', 'gameid', 'playerID', 'goalsscored', etc...
So...
My end result is to have a form which allows me to enter the Game details and a subform to enter the players for that game.
My question regards - what is the best way to lookup and enter the list of players ?
Thanks in advance for any design suggestions.