I want to have a list of clients (id, name, URL, email) and users (id, name, email) can "Register" to MULTIPLE clients.
Then I want a page to display my current Clients and under each Client is a list of users that have registered to each client, and users can be registered to many clients.
EXAMPLE:-----------
Client 1
- dan
- max
- tedd
Client 2
- max
- sarah
- tedd
I can't think of the best way to setup my mysql tables.
First I had a clients table and a users table (i intend on using my phpbb user table btw) but i ran into trouble trying to logic out the structure for multiple users being able to register under multiple clients.