MY previous site used DATETIME fileds in MySQL to store all dates/times. On my new site I am adding in timezone capability so I am wanting to store all submitted times at UTC timestamp, I am a little confused now though after reading another post on SO, I read that the timestamp is updated everytime you update the record, if that is the case then should I be storing my UTC timestamp into a text filed or what?
I was planning to store the UTC value with this below, am I wrong, please help
$now = gmdate('U', time());