I would like to record in MySQL how many times a user has logged in.
If the table (purely an example) looked like this:
¦id¦logins¦
I can only think of making one call to get the current login, then adding '1' to it and making another call to update the table.
Cookies would be very unreliable I'm thinking so, is there another way?
Many thanks
Nick