I have a date of the form mm-dd-yyyy. I need to convert into YYYY-MM-dd to store in the database. I did the following
$eff_date=$this->post['effective_date'];
$eff_date=$eff_date->toString('YYYY-MM-dd');
I get the following error:
Call to a member function toString() on a non-object
I am not sure how to fix it.