How to change the normal input date format dd-mm-yyyy in the webpage to yyyy-mm-dd while storing in the php my admins
you can convert the date with strtotime();
$dateToday = date("d-m-Y");
$newDate = date("Y-m-d", strtotime($dateToday));
And then you can store data to your database.