Hello, I've a question for you: i would like to use CakePHP to develop a web app allowing to manage the participation of some attendees to an event (like Doodle). This app will provide several dates and each attendee can choose 1 to (max number of dates) value.
The process is the following: 1/ Creation of the event by the admin EVENTS (id,name,author,link,modified,created) 2/ Creation of the occurrencies by the admin OCCURRENCIES (id,occurrency_date,event_id) 3/ The admin sends a mail to the potentials attendees 4/ The attendees fill in the available dates. ATTENDEES (id,name) ATTENDEES_OCCURRENCIES(attendee_id,occurrency_id,created) EVENTS :hasMany(Occurrency) OCCURRENCY: belongsTo(Event), hasAndBelongsToMany(Attendees) ATTENDEES: hasAndBelongsToMany(Occurrency) I've developped the classes (model/controller) but i'm facing a problem (maybe because i begin programming using CakePHP). In fact, i would like to separate the phase of event creation from the attendees participation. I don't really see how i can manage this.... Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. 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
