Answer the question
In order to leave comments, you need to log in
How to get the date and time from the database by DD MM YYYY HH MM?
I save the date and time in the database, but it is saved as 2020-05-24 14:01:04
How to make it show on the page as 24-05-2020 14:01:04 ?
Answer the question
In order to leave comments, you need to log in
<?php
$date = strtotime("2020-05-24 14:01:04");
echo date("d-m-Y G:i:s", $date);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question