I have a mysql database with my php website, and 1 of the fields in my database is a number.
Every 30 minutes a number has to be added to the previous number
Ex.
time=10.00 number=5
time=10.30 number=6
time=11.00 number=7
I know how to add a number to the database number using SET, but how can I make the code in a way that the number is added every 30 minutes??
thanks in advance
Dion