Tagged Questions

1
vote
4answers
1k views

Get string representation of a sql DateTime day

Let's say i have a sql datetime of '1 May 2009' or '12 May 2009'. Is there any built in sql function / operation i can perform on the dates above to return the string representation of the DAY of the ...
0
votes
1answer
35 views

Getting current day as number on masm?

I want a program to do X task twice a month. So I though about getting the current day as number so I could do something like if day == 1 or 15 then do X Does someone has a simple masm example to get ...
0
votes
1answer
53 views

Django display notifications by day

i have a notification list, and i want to order them by day, meaning, that i want to have in my notification list every day a title like 'Monday 16th od September' and the notifications for that day. ...
0
votes
2answers
923 views

PHP 'end date' from a given 'start date' - last day/15th of the following month

I'd like to get an 'end date' from a given 'start date' in PHP. End date is based off the start and are calculated as follows: If Start date is from the 1-15th of the month, End date is the 15th of ...