0
How to change the date 2017-07-04 12:53:14 to Day/Month/Year and continue the normal schedule with PHP, it’s coming like this "2017-07-04 12:53:14" from the database
I want to stay 04/07/2017 12:53:14
0
How to change the date 2017-07-04 12:53:14 to Day/Month/Year and continue the normal schedule with PHP, it’s coming like this "2017-07-04 12:53:14" from the database
I want to stay 04/07/2017 12:53:14
1
You can format like this
date_format(date_create("2017-07-04 12:53:14"), "d/m/Y H:i:s");
Browser other questions tagged php
You are not signed in. Login or sign up in order to post.
Vlw worked out :D
– João Pedro Morais