I have a MySQL-Table with lots of dates in it. In my query I'm getting the date in the format YYYY-MM-DD.
$date = $sql->getValue("date");
echo $date;
// Output: 2016-12-19
Is it possible to get an output like Monday, 19.12.2016
?
I have a MySQL-Table with lots of dates in it. In my query I'm getting the date in the format YYYY-MM-DD.
$date = $sql->getValue("date");
echo $date;
// Output: 2016-12-19
Is it possible to get an output like Monday, 19.12.2016
?