Skip to content
Advertisement

Post date format and select date format from the database

I have a textbox that displays the current date in format: d-m-Y

JavaScript

When I save this the date will written to my database like: Y-m-d. For example: the current date is: 02-06-2016. My script writes this to the database as: 2002-06-16.

I am using the following code to save the data to my database:

JavaScript

What do I need to change in my code so it will post it like: 2016-06-02 Y-m-d or 02-06-2016 d-m-Y?

If d-m-Y is not possible, how can show the data that is written like Y-m-d in the database show as format d-m-Y in my php script?

Edit:

For selecting the date I use:

JavaScript

Advertisement

Answer

JavaScript

To show date in d-m-Y format in HTML page, again convert it into

$date = date("d-m-Y",strtotime($row['date']));

[Note: I’m assuming your fetch array as $row and column as date.]

For more info, please have a look on strtotime – php manual

Update Code (As question is edited)

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement