Hi,
The SQL used would depend on what information you have about the logged in user and what piece of information about the user you stored in the events table.
If it were me I would have something like this:
User Table
- User ID
- User name
- Password
- Email
- Etc.
Events Table
- Event ID
- Date
- Time
- Description
- User ID
- Etc.
sql = select events.* from events, users where events.user_id = users.user_id and users.username = $username
However, if you are storing the username against the event you only need to select from the events table.
I hope that I have explained this well...
Regards
Matt