Well, the display part is pretty simple.
It's moreless just reading a mySQL table and doing some string handling stuff .
Your table could have the colums
- year
- id - an auto-incrementing id
- round
- pick
- iteam
- aquired
- position
- name
- school
The script should then check its parameters. If no year is given -> error.
If only a year is given select all rows that match this year, sorted by id ascending.
If a year and a round is given select only those rows that match year and round, also sorted by id.
Then loop through the results to build up the list.