I want to change date format from 08/10/2015
to 2015-10-08
I have tried following code but not working for me.
$startDate = $this->input->post('startDate');//08/10/2015
$startDateFormat = date('Y-m-d',strtotime($startDate));
$endDate = $this->input->post('endDate');//09/10/2015
$endDateFormat = date('Y-m-d',strtotime($endDate));