Questions tagged as 'date'

3
answers

Comparing dates in JavaScript

Hello, I need to compare the current date with the date entered by the user, but the seconds prevent this check: var data_publicacao = new Date($('#frm-data').val()); console.log(data_publicacao); var data_atual = new Date();...
asked by 25.07.2018 / 21:38
3
answers

How to read only the FormatDataTime numbers

I needed to know the current time of the computer and compare it with values in the database, for example: 'agenda.hora >= "' + formatdatatime('hh:ss',now) + "; It turns out that both the bank and the format will return a string, the ban...
asked by 28.09.2017 / 15:11
1
answer

Validate date of birth so that you can not register under 18 (JavaScript)

I have a field called 'txtdata_nasc' of type date. I need the user not to enter a date that makes him less than 18 years old, but also that he can not have an absurd age, such as 100 years old, I need him to enter at most a date of birth that ma...
asked by 05.05.2018 / 07:12
1
answer

Implementing month type function

Good morning, people? I was implementing a function of type Month that returns Month I've tried using static_cast to convert to Month type but the conversion errors for it. The program is this below: #include <regex> #include <arra...
asked by 23.01.2018 / 11:54
1
answer

Search by date not working

I am trying to search mySql database by filtering by date and it is not bringing any results. In the screen below I was able to search for the other criteria Thisisthecodethatisdoingthesearches.publicvoidmontaTabelaBusca(){Stringcriterio=" W...
asked by 16.04.2017 / 21:22
1
answer

Work with hour and minute

I would like to make a code that takes hour and minute so that I can work with a scheduling schedule for the execution of an action, for example: var inserirProgramAtual = document.getElementById("CBNestudio"); if ((new Date().getDay() &g...
asked by 07.12.2018 / 18:11
1
answer

Check events that occurred in a certain period of time

I need to register the following event in my program: Players who kill 5 times during the 1 minute interval will win a prize. My class mapping is as follows: public class Game { private String name; private HashMap<String,Pla...
asked by 30.07.2014 / 20:29
1
answer

Change in GIT log [duplicate]

I would like to change the log of my GIT server using a hook. The situation is as follows, when someone commits and the local machine has the wrong date, the log shows the local machine time. I would like that through a hook it would change...
asked by 03.03.2016 / 13:20
4
answers

Format value for date [closed]

I need to format a value for date ... I search for the following value link:    20181107 In case it would be 07/11/2018, today. I need to get this value and format it in 2018-11-07 format, I tried it as follows: date('Y-m-d', str...
asked by 07.11.2018 / 14:48
1
answer

How to check how many days have passed since a date in Javascript

I need to check the number of days that have passed since the day a particular task was created, for example, if I start a task today I get the following date back: 2017-08-30 11:38:52.168 I need to make a control so that in 4 days,...
asked by 30.08.2017 / 16:59