17.03.2013, 12:17
For sql you have at least 2 options:
1. single field
2. New table, with additional fields like date
(something like this)
For filesystem simply create single file called paydays or something, and add a new line every payday.
1. single field
Quote:
UPDATE `yourtable` SET paydays = paydays + 1 |
Quote:
INSERT INTO `newtable` SET id = null, paydate = NOW() |
For filesystem simply create single file called paydays or something, and add a new line every payday.