How to change the date 2017-07-04 12:53:14 to Day / Month / Year and continue normal time with PHP, so it is coming "2017-07-04 12:53:14" from the database. data
I want you to stay 04/07/2017 12:53:14
How to change the date 2017-07-04 12:53:14 to Day / Month / Year and continue normal time with PHP, so it is coming "2017-07-04 12:53:14" from the database. data
I want you to stay 04/07/2017 12:53:14
You can format this way
date_format(date_create("2017-07-04 12:53:14"), "d/m/Y H:i:s");