Hi bpat,
Before the migraine, I had this all figured out..
What's the best table format? Currently, the users are stored in a table:
table users
id | name | firm | phone
And the event which the users will attend has a table:
table event
id | event_name | location | etc..
I imagine that I should use a relational table to associate the users with the event... But the numbers of people will vary.. And with what I would like to do, how do I change the variable for each new additional user? I was thinking that a relaional table with user1 thru user10 would work, but now, I question that.