I would like my list page to have its elements link to that elements' page.
Example: Two tables
Votes
- vote_id
- candidate1_id
- candidate2_id
- cvandidate3_id
Candidate
- candidate_id
- candidate_name
- candidate_age
When I show the Votes_list page, I would like the following displayed (repeated for however many votes there are):
VoteID - candidate1_name - candidate2_name - candidate3_name
Then each candidate name listed will be a link to that candidate table, and it would display (only one row of that candidate):
CandidateID - Name - Age
It seems like it should be straightforward, but I haven't been able to get it to work.
Assistance, is most appreciated.