Jump to content

dates between a certain week


dannybrazil

Recommended Posts

Hello there,

 

I have a DB table where everyday I insert my meetings for the future.

 

I want to ask you guys if anybody can help me with creating some sort of a weekly report.

 

EXAMPLE:

 

I have meeting from the beginning of the year (Mon-Sat)...could be 4-10 meeting per day, so a lot in general.

 

I want them to appear , with sql, under the WEEK they were in for example:

(a year has 52 weeks)

 

WEEK 1 (01-01-2011 -> 08-01-2011)

*M1

*M2

*M3

...

 

WEEK 2 (09-01-2011 -> 16-01-2011)

*M4

*M5

*M6

...

 

 

etc...

 

Is there a way to define the date's range after the week ended automatically?

 

Thanks

 

 

Link to comment
Share on other sites

date("W");

will return the week's number.

Since your page is based on weeks, it could make sense to store the week along with the meeting date.

You could run a script, to check the week number of each meeting date:

$weekNr = date("W",strtotime($meetingDate));

and add a WeekNr field to your database to store the returned values, then slightly change you original script to also include the week number when inserting new meetings. That way all you'll need to do in the future is something like:

select * from `table_name` where `weekNr` = '$week'

(weekNr should be defined as an index, so speed up searches)

Link to comment
Share on other sites

You could also just get the week number directly in the query, then display the week's header only when it changes in the results. Off the top of my head, something like this should get you on the right track if you want to do it that way.

 

$query = "SELECT meeting_name, WEEK(date_field, 7) AS wk FROM table ORDER BY date_field ASC";
$result = mysql_query( $query );
$wk = '';
while( $array = mysql_fetch_assoc($result) ) {
     if( $array['wk'] != $wk ) {
          echo $array['wk'] . '<br>';
     }
     $wk = $array['wk'];
     echo $array['meeting_name'] . '<br>';
     // etc.
}

Link to comment
Share on other sites

You can use this example that I just wrote for a buddy of mine.  It has a number of different date layouts. ..

 

<?php
$dow = (date('w') + 6) % 7;
$monday = strtotime("-$dow days");

echo "<b>Monday of this week is dated:</b> ";
echo date (' D jS M Y', $monday);               // Mon 29th Aug 2011 
echo "<br />\n";

echo "<b>Monday of last week is:</b> ";
$startTime = mktime(0, 0, 0, date('n'), date('j')-6, date('Y')) - ((date('N'))*3600*24);
$endTime = mktime(23, 59, 59, date('n'), date('j'), date('Y')) - ((date('N'))*3600*24);
echo date (' D jS M Y', $startTime)." - ".date (' D jS M Y', $endTime)."<br />\n";

echo "<b>Monday of 2 weeks ago is:</b> ";
$startTime = mktime(0, 0, 0, date('n'), date('j')-13, date('Y')) - ((date('N'))*3600*24);
$endTime = mktime(23, 59, 59, date('n'), date('j')-7, date('Y')) - ((date('N'))*3600*24);
echo date (' D jS M Y', $startTime)." - ".date (' D jS M Y', $endTime)."<br />\n";

echo "<b>Monday of 3 weeks ago is:</b> ";
$startTime = mktime(0, 0, 0, date('n'), date('j')-20, date('Y')) - ((date('N'))*3600*24);
$endTime = mktime(23, 59, 59, date('n'), date('j')-14, date('Y')) - ((date('N'))*3600*24);
echo date (' D jS M Y', $startTime)." - ".date (' D jS M Y', $endTime)."<br />\n";

echo "<b>Monday of 4 weeks ago is:</b> ";
$startTime = mktime(0, 0, 0, date('n'), date('j')-27, date('Y')) - ((date('N'))*3600*24);
$endTime = mktime(23, 59, 59, date('n'), date('j')-21, date('Y')) - ((date('N'))*3600*24);
echo date (' D jS M Y', $startTime)." - ".date (' D jS M Y', $endTime)."<br /><br />\n";

?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.