|
I have a registration/profile table that holds user information for a non-profit that I'm helping out.
They'd like to start recording attendance for meetings/events in a database with web access, and the current script and database is PHP/MYSql.
The problem that I'm having is that the people in the group are generally not around for more than 3-4 years, so the membership is constantly changing.
What I've got so far works because it just keeps a running tally of events attended in each person's profile. However, they'd like to be able to keep track of individual events, especially because if the wrong info is accidentally entered, there's really no way to account for it.
If each event were a row and each member a column, can PHP/ some database dynamically find and add columns? I've been kinda stuck because I know INSERT requires you to know in advance each column name and value.
Any ideas, or am I overlooking something obvious? I myself won't be around the group forever, so I'm trying to make the code as flexible as possible to grow with the group, and so that people can administer the website without knowing code.
Thank you in advance!
~Dan
|