Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

30
votes
8answers
23k views

How to add 30 minutes to a javascript Date object?

I'd like to get a Date object which is 30 minutes later than another Date object. How to achieve it?
7
votes
9answers
967 views

SQL Count for a Date Column

I have a table that containts a set of columns one of it is a Date column. I need to count how many occurrences of the values of that column refer to the same month. And return if for one month, that ...
7
votes
4answers
9k views

Simplest way to increment a date in PHP?

Say I have a string coming in, "2007-02-28", what's the simplest code I could write to turn that into "2007-03-01"? Right now I'm just using strtotime(), then adding 24*60*60, then using date(), but ...
3
votes
3answers
271 views

MySQL: How to calculate weeks out from a specific date?

I need to calculate the weeks out from a date in my MySQL select statement. There is a date column in one of the tables, and I need to calculate how many weeks away the date is. SELECT EventDate, ...
3
votes
1answer
126 views

How to display after 4 week date from now?I want to pass an argument

echo date( "F jS, Y" , strtotime("now +3 weeks") ); It gives the result as July 2nd, 2010 . Fine.Now I want to pass the argument like this. The original print_r($originalamount) give the result ...
2
votes
2answers
214 views

SQL - Retrieve values in a single query with multiple where clauses

I have a table with the following data: UserName | LastLogin ------------------------------- User1 | 2010-10-25 10:05:47 User2 | 2010-10-23 11:10:27 User3 | 2010-10-12 05:39:34 User4 | ...
2
votes
4answers
2k views

Start and end date of a current month

I need the start date and the end date of the current month in Java. When the JSP page is loaded with the current month it should automatically calculate the start and end date of that month. It ...
2
votes
6answers
1k views

Grouping dates by month in an sql server query (stored procedure)

Im having a bit of a mental block on this one. I got booking system for hotel rooms and it contains a table as so BookingRoomLink BookingId (FK) RoomId (FK) Start_Date End_Date I'd like to query ...
1
vote
1answer
58 views

match a number (date) in a matrix - Matlab

I have an interesting problem that involves taking the last day from a matrix and finding its last month day. Eg, if the date today is Oct-10-2011, you try to search for Sep-10-2011 or the first day ...
1
vote
2answers
306 views

SQL Server 2008- If date falls on weekend, Increase to next Monday

In SQL Server I am calculating a date based on certain business rules. If the date falls on a weekend I need to move it up to the next monday...so basically: if(date == saturday) { add 2 days } ...
1
vote
2answers
418 views

javascript date manipulation

I have a string 2010-08-02 12:13:06.0 and need to get something like Fri Aug 6 2010 out of it (the input does not map to the output for the values I gave, just examples) I fear Im going to have ...
1
vote
3answers
883 views

add days and hours in date/time field and get the updated date/time in php using mysql

I would like to provide the ability for users to submit a datetime value, along with values representing additional days/hours, and then store the datetime that results from adding the two in a mysql ...
1
vote
3answers
313 views

Why do I get “uninitialized value” warnings when I use Date::Manip’s UnixDate in a sort block?

Related/possible duplicate: http://stackoverflow.com/questions/1263943/why-do-i-get-uninitialized-value-warnings-when-i-use-datemanips-sortbylength This block of code: my @sorted_models = sort { ...
0
votes
3answers
28 views

Find week number within range of dates in Perl

I have a range of dates -- say 2012-01-30 .. 2012-04-06 -- which denote a set of weeks that fall within these dates. These weeks are numbered 1 through 10. Given today's date (for instance, ...
0
votes
2answers
127 views

Shell script for date manipulation

I want to do something if the date is in between 08:03 an 14:03 in a script. but when I try dt=`date +%H:%M` if [ $dt -eq 08:03 ] then echo $dt > msize.txt #echo "iam im 1 if" fi it doesn't ...
0
votes
3answers
62 views

Push strangely formatted dates into MySQL from PHP

I am sure this must be a common question but I cannot find it anywhere so here it goes: I have dates in this format: 09/Jul/2003:00:03:48 -0300 and I want to push them into a DATETIME field in MySQL. ...
0
votes
2answers
163 views

Mysql, php query WHERE statement, recordset expire in +1 day of post date?

I basically have a simple calendar I set up. As of now, it shows "future" events. And then the event expires that day... I would love to find a WHERE statement that I can use to have that "event" stay ...
0
votes
5answers
913 views

Why does Date::Calc complain about “not a valid date”?

Previously, this function worked for me... $this_day = Day_of_Week($lyear, $month, $day); using this lib.. use Date::Calc qw(Add_Delta_Days Day_of_Week Delta_Days); But I need another way to get ...