How to do a date stamp in CakePHP -
i'm doing enquiry system , want every enquiry created have date stamp (not time). wondering how go doing this. i'm guessing i'd start grabbing current date, saving data? sorry i'm new :/
this super easy in cakephp.
1) add 'created' field enquiry table in database, , give type datetime
2) there no 2. cakephp automatically populate field current date, each time new record saved.
note: may want add 'modified' datetime field. similar created, automatically updated each time record modified , saved.
Comments
Post a Comment