There have been a number of threads on this topic, but this bug still remains.
I'm assuming the code does SQL queries to get the list of people who have registered 'today'. Why not add the key-word distinct so it only grabs 1 of each registered person.
Not being able to see the code, I'm not sure what you have done, but this seems to be an easy solution to the (admittedly small) but annoying problem.
I'm assuming the code does SQL queries to get the list of people who have registered 'today'. Why not add the key-word distinct so it only grabs 1 of each registered person.
Code:
sql = "SELECT DISTINCT * FROM ..."

Comment