I have been looking online for this answer and have come up empty...I am extremely tired so I thought I would give this a go....
I have a variable that has a date from a textbox
$effectiveDate=$_REQUEST['effectiveDate']; What I am trying to do is take this date and add the current time
date('Y-m-d H:i:s', strtotime($effectiveDate)) When I echo this out I get 1969-12-31 19:00:00
Is this possible? Can someone point me in the right direction?
$_REQUEST['effectiveDate']in?