Hello, I am associating a couple of models and have hit a snag on how to associate the last piece. I have a "users" model, a "tournaments" model, a "signups" model. Signups is a HABTM association of the users and tournaments using "with". So far everything works great. The "signups" model has id, tournament_id, and user_id fields. I now need a way to enter scores for the user if the they signed up (paid) to be in the tournament. I currently have a scores model that belongs to the signups model. The scores table consists of id, signup_id, day and score. The tournament may be 1-3 days which is why I have to have a 'day' field. I planned on using the signup id along with the day of the score and the score. The issue I am having is how I now show the user & tournament (not just the signup id) that goes with the score record.
--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
