You need 3 tables, Event, Member and an Available table to link the two.
Add a record to the 'available' table for each member that is available for an event
Event
event_id
event_datetime
description
Member
member_id
name
etc
Available
event_id
member_id
For each event you can now find who is available and each member can check which events he signed up for.
hth