I have a databse of articles, each article having a record field TimeCreated which contains the unix timestamp when the record was created -- a simple insertion of the current system time() to the db.
I am trying to list articles by the days they were created. So my first screen would only display those articles created today, clicking "PREVIOUS" would then bring the user to a list of articles created the day before (or the most recent day before), etc, etc with NEXT and PREVIOUS.
Is this possible with the unix timestamp?
I was previously using the field as a timestamp(14) -- but found the system was automatically changing this date setting whenever the record in question was edited. So if I created a record on 9/12/04, then edited it on 9/15/04 -- the field would change to 9/15/04 automatically when the record's new information was written to the db.
Any help is greatly appreciated.
K