1
I created a registration system and data queries for the registry office where I work, however, the dates are being displayed in the a/m/d format and I want to change to the national format, but I don’t know how to do it. someone can help me?
1
I created a registration system and data queries for the registry office where I work, however, the dates are being displayed in the a/m/d format and I want to change to the national format, but I don’t know how to do it. someone can help me?
0
With PHP
:
$sua_data_atual='2018-05-19';
echo date('d/m/Y' strtotime($sua_data_atual));
Retouching 19/05/2018
.
Browser other questions tagged php html wampserver
You are not signed in. Login or sign up in order to post.
Show the code where you try to display the dates. It’s probably just a matter of properly formatting just before displaying.
– bfavaretto