Jump to content

Dividing a date up and saving it into different fields in the db


Petty_Crim

Recommended Posts

Basically I want to know how I can get todays today as in say 25/9/2007 and store the day (27) in a day field in my db and the month in another field in my db and also the time hours and minutes in another field in my db.

 

I'm also confused as to what way is the best way ie should I use timestamps or just dates?

I always use unix time, cos it's in seconds and therefore very easy to compare and do math with. I only format it when outputting to humans... Use the php function time() and date()... Then you know what the time will be before putting to db, then it can be used for a few things, all with EXACTLY the same timestamp!

http://uk3.php.net/manual/en/function.time.php

http://uk3.php.net/manual/en/function.date.php

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.