I just want to ask you if there is way of how to get rid of timezone. In MySQL I am using DATE datatype to store dates.
var today = new Date();
var date = today.getFullYear() + '-' + (today.getMonth() + 1) + '-' + today.getDate();
This is how I get current date using javascript. Then I insert this to my database using query but when I try to display the date from the table I am getting something like this :
Tue Nov 16 2021 00:00:00 GMT+0100
I just want to display Day, month and year without timezone.