Hi, this is my code to check the whole database, but how do I check the whole database except for 1 particular row? Taking into consideration that I have an unique ID for every row. so I’m able to do something that checks for all the ID except this ID.
$check_query = "SELECT COUNT(*) AS count FROM participants WHERE email = '$email'";
$result = $connection->query($check_query);
Thank you for reading!