I can change the date and time but I issue is I save my date and time in database in this format Thursday 09th of July 2020 12:24:23 PM
so I want to convert this in d-m-Y OR d-m-Y H:i:s
Please help me how to I make this I search this related thread on stackoverflow but I couldn't achieve that ..
current I have tried this below code..
<?php
$orgDate = "Thursday 09th of July 2020 12:24:23 PM";
$newDate = date("d-m-Y", strtotime($orgDate));
echo "New date format is: ". $newDate. " (MM-DD-YYYY)";
?>
RESPONSE: New date format is: 01-01-1970 (MM-DD-YYYY)