taylorantone
MIS
On an ASP page, I have DVD's listed and I can't get it to properly display all of the genres without them being in a field.
Here's how the tables are set up (essentially, it's a many-to-many relationship):
tblDVD--
dvdID (autonumber)
other data
tblDVDGenre--
dvdID
genreID
tblGenres--
genreID
genre
I have an ASP page I made with FP2002 that uses a database-populated drop-down box to allow the user to choose a genre and then it displays all of the DVD's that belong to that genre. Since almost every movie out there belongs to more than one genre however, I wanted a way to list all of those genres in the results.
Since I'm such a n00b at this stuff, I just added a field to the tblDVD called genre where I manually entered the genres the movie belongs to, separated by commas. This is totally separate from tblGenres or the linking table.
Any suggestions on how I can do this?
Here's how the tables are set up (essentially, it's a many-to-many relationship):
tblDVD--
dvdID (autonumber)
other data
tblDVDGenre--
dvdID
genreID
tblGenres--
genreID
genre
I have an ASP page I made with FP2002 that uses a database-populated drop-down box to allow the user to choose a genre and then it displays all of the DVD's that belong to that genre. Since almost every movie out there belongs to more than one genre however, I wanted a way to list all of those genres in the results.
Since I'm such a n00b at this stuff, I just added a field to the tblDVD called genre where I manually entered the genres the movie belongs to, separated by commas. This is totally separate from tblGenres or the linking table.
Any suggestions on how I can do this?