Tagged Questions

4
votes
3answers
297 views

php program to find the my birthday where day name “Monday” for another 100 years

I was born in 1986-04-21, which is Monday. My next birthday with day name "Monday" is 1997-04-21 and so on. I wrote the program to find upto 100 year to find which year my birthday comes with ...
3
votes
5answers
688 views

How do I get the last possible time of a particular day

I'm trying to achieve the last possible time of a particular day eg for Date of 2008-01-23 00:00:00.000 i would need 2008-01-23 23:59:59.999 perhaps by using the dateadd function on the Date field?
2
votes
3answers
752 views

Next business day of given date in PHP

Does anyone have a PHP code to calculate next business day of given date? And also how does for example YYYY-MM-DD need to be converted to find out next business day. Example: For 03.04.2011 ...
1
vote
3answers
164 views

How to find earliest upcoming date given a list of weekdays?

Dates in PHP are a nightmare for me so please help me out fellow coders... I want to notify customers about the day their order will be delivered. It works like this: I have 2 shipping zones, A & ...
1
vote
3answers
116 views

Getting first day of every week in 6 months

I'm trying to figure out how can I get the the first day of week for the last 6 months and can't get to a working solution. If I write date("Y-m-d 00:00:00", strtotime("-1 week", date("Y-m-d")); It ...
0
votes
1answer
24 views

Separate align style for day and date in a cell

I have a cell that contains day date (Mon 11/21/2011). The problem is with the formatting. I want the day part to be left aligned wrt to the cell while date part to be right-aligned. ...
0
votes
2answers
67 views

Getting all weeks days label in user language

I would like to do something more clever than: String[] strDaysEn = new String[] { "Sunday", "Monday", "Tuesday", "Wednesday", "Thusday", "Friday", "Saturday" }; String[] strDaysFr = new String[] { ...
0
votes
1answer
92 views

Comparing two Date values in ActionScript - possible to compare whole day values?

I need to be able to compare the number of whole days between two dates in ActionScript, is this possible? I'd like to test if one date is 7 days or less after today, and if so is it one day or less ...
0
votes
0answers
55 views

Local notification customisation knocking it out without showing an error

I'm quite new to XCode and despite reading a heap of things in books and online I'm having a bit of trouble with setting a local notification so that the user cannot specify it but rather I can ...
0
votes
5answers
1k views

How to get first day of every corresponding month in mysql?

I want to get first day of every corresponding month of current year. For example, user selects '2010-06-15', query demands to run from '2010-06-01' instead of '2010-06-15'. Please help me how to ...
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 ...
0
votes
6answers
268 views

bash : Make job every x days

I have a bash script runned every day via cron. In this bash I want to run some command but only every x day (x is fixed and will be 3, 4 or 5 I don't know at the moment) I can test if the remainder ...