I have one doubt. I have in mySQL database a date with the format "NOW()": 2013-01-28 12:53:26 where I create a ticket. So, I want to get this data and convert to this: date("YmdHis"), using a query.
I've tried to do something like this, using a variable on echo:
$get_data = $rsres->Fields('create_time');
echo gmdate("YmdHis",$get_data);
However without sucess. What's the problem?
Thanks.