table name = goal
Column Type Size PrimaryKey
ID number 10 Y
HomeTeam varchar 30
AwayTeam varchar 30
HomeScore number 2
AwayScore number 2
GameDate date 10
select * from goal order by GameDate
This assumes that the data is filled in from two drop boxes for the team names ( don't forget to code to ensure that the team doesn't play itself) and two text boxes for the score....
You will need to figure what criteria is needed to get the results to the user,(ie drop box on gameDate?)
hth
Bastien