Forum Moderators: coopster
Look, i have php page that lists a bunch of records. This records are store in a table named "lyrics" that has three fields: title, lyrics and id_author (it's a foreing key). Now, on the other hand, i have other table named "authors" and it containes two fields: id_author and author_name, ok?
I already create a "master page" that lists all lyrics and a "detail page" and they are working just fine.
What i want to do and don't know how, is that on each detail lyric page i want to put the author's name. I put the id_author from the "author" table and of course it shows me the id_author, but i need the NAME of the author.
See my point?, there should be a way to create a relationship between the id_author from the "author" table and the id_author from the "lyrics" table and this relationship should give me the "author_name" value, not the "id_author" value.
Ok, i hpe i made my self clear, let me know if someone know how to solve this.
Many thanks to all of you.