How do I turn the set of numbers created by the timestamp(now) field into useful Time and Date info?
Originally posted by seanlyons How do I turn the set of numbers created by the timestamp(now) field into useful Time and Date info?
either by using strftime http://www.php.net/manual/en/function.strftime.php
or date http://www.php.net/manual/en/function.date.php
your timestamp field would be the 2nd parameter in both functions.
I personally prefer strftime.