Forum Moderators: coopster
$then_ux = mktime("","","",date("n,d,Y",strtotime($followup["fdate"])));
This seems more complicated than it needs to be.
The conversion from Unix to text is getdate($then_ux) -- to verify the first conversion -- gives me a date that's 8 days earlier.
fdate comes from a MySQL DATE field. I've thought of using Date_Format() in the query but can't use it because I need to keep the date the way it is for other reasons.
Any thoughts would be appreciated!