In php i can get today date/day by using : $today = date('D, Y-m-d');

If today is wednesday 8 july, i want to display data from 6 - 11 July (9, 10 and 11 will be blank). How do I do that?

Now my system is like, today is 8 July, i will display 2 - 8 july, but start on wednesday. Not very like this way. I prefer, start on Monday to sunday, then have previous and next week button.

link|improve this question

do you want to display list of current week days (in format 'D, Y-m-d') ? – Ish Kumar Jul 8 '09 at 10:08
i am not sure. What is the easiest and simplest method? – jingleboy99 Jul 8 '09 at 10:13
feedback

2 Answers

up vote 2 down vote accepted

Use simple strtotime() to easy calculate the date of last monday.

$lastMonday = strtotime('last monday');

Be sure to check if today is not monday, because in that case it will return a date week earlier.

link|improve this answer
how about next and previous button thing?? – jingleboy99 Jul 8 '09 at 10:19
that's easy as - strtotime('next monday'); – Ish Kumar Jul 8 '09 at 10:22
okay.. thanks for the answer – jingleboy99 Jul 8 '09 at 10:27
feedback
... WHERE  YEARWEEK( $inputdate ) = YEARWEEK( datefield) ...

http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html#function_yearweek

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.