I have a ROW in my database's table that is a TYPE = timestamp. So the saved date format is like this:
2015-11-30 14:54:04
I googled it and said this is default timestamp format of MYSQL. How can I echo this date in PHP using this format:
November 30, 2015 2:54:04 PM
Note: I am running this in a loop and the retrieved data includes this date in the whole table so the var for this date to echo is $feeds->reg_date
. I hope my question is clear.