I'm not a very experienced programmer. I have build a user registration and login system and a webpage for concerts. I want my users to sign up for a concert and have that a list of links shown on their index page based on which concerts they've signed up for. I also want to give them the option to unsign from a concert.
So I have been reading up on it and it seems like I have to create a boolean for every concert and then have that be set to true on button click and then generate a list of all the true booleans for users; so that every user gets the list they've signed up for. I have no idea how to add booleans to mysql (I've created a DB in Phpmyadmin, then added a DB under that with users that now stores id, username, email and password)
I just can't find an option to add those booleans and have no idea where to look. I also don't know how to generate the list, I'm assuming it's pretty simple, since it's just the link to the webpage that they've clicked the button on, but I don't really know where to look