Hello,
I have just setup my first PHPRunner application and everything works well. Now that the general eatures are working I'm trying to do some more complicated stuff and have ran into a problem.
General Info about my app
The idea is as follows:
I'm building an online system to manage events and subscriptions. 3-5 times a month we do something with our club. And I want to track which members are subcribed to every event.
This works btw.
Database model
users
user_ID
name,
firstname
Events
event_ID,
name,
startdate,
enddate
registrations
user_ID,
event_ID
this table handles the Many-To-Many relationship between events and users
What am I trying to achieve
On the Userlist and EventsList page I already have this button to show the subcriptions (trough a popupwindow). However If I add/edit/view an Event of User I also want to show a little table with the users that are registered to this event OR in the case of ADD:/EDIT/VIEW users the events that this user has subscribed to.
In other words I want to show the Child Information of the EVENTS or USERS table in the add/edit/view page.
This would be super cool If possible
I would be nice If I could subscribe users to an event if I'm in the edit event view, idem dito for the users view.
All help is welcome.
Best regards
Geert