I am currently building a sports web application and have run into a
design question.
In order to create a new coach record, there are two pieces of
information that are needed: 1) username 2) team_id
It seems to me that the best way to do this is to break the problem
into two parts. First, search for the username and append that to the
URL: http://www.mysite.com?username=john
Next, I would present the user with another search box to search for a
team and then add '&team_id=1' to the GET url. The final URL should
look something like
http://www.mysite.com?username=john&...ction=addcoach
Does anyone know of a good example out there for doing this in a
methodical and elegant fashion?
Marc
design question.
In order to create a new coach record, there are two pieces of
information that are needed: 1) username 2) team_id
It seems to me that the best way to do this is to break the problem
into two parts. First, search for the username and append that to the
URL: http://www.mysite.com?username=john
Next, I would present the user with another search box to search for a
team and then add '&team_id=1' to the GET url. The final URL should
look something like
http://www.mysite.com?username=john&...ction=addcoach
Does anyone know of a good example out there for doing this in a
methodical and elegant fashion?
Marc
Comment