Re: FormatDateTime Revisited



John, you will need to use strtotime to convert your $dateMerge into a
timestamp (before passing in to date()). Simply change date("Y-m-d",
($dateMerge)) to date("Y-m-d", strtotime($dateMerge)) and I believe
it'll work.

.