Link to home
Start Free TrialLog in
Avatar of Razzmataz73
Razzmataz73

asked on

PHP how to stop for statement after value is hit

Hello,
I have a calendar controls that correctly assigns a week (1-52) number to the date that is picked in a start date and end date control.

And in my database I have 52 price fields (one for each week).

I am trying to display the pricing for the weeks that are picked.
For example if the start week is 40 and the end week is 45 it displays the pricing for weeks 40, 41, 42, 43, 44 and 45.

I have that all working accurately through the code:
for($i=$startweek;$i<=$endingweek;$i++)
	{
 echo "<td>Week ", $i, ": $<b>", $row["price$i"], "</b></td>";
 }

Open in new window


The problem is when the start date is larger then the end date.
For example if the start week is 52 (last week of the year) and the end week is 1 (first week of the next year).

I have the code:
 for($i=$startweek;$i>=$endingweek;$i++)
	{
 echo "<td>Week ", $i, ": $<b>", $row["price$i"], "</b></td>";
 }

Open in new window


It will bring back the correct information for week 52 but then goes into a loop adding week 53, 54, 55, etc... with no values.

How do I get it to stop at week 52 and also bring back the values for weeks lower then 52 (ie week #1 in the example).

I hope this makes sense.

Thank you in advance for your help.
SOLUTION
Avatar of Ray Paseur
Ray Paseur
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Razzmataz73
Razzmataz73

ASKER

The week number comes back with no problem.

My issue is how do I write a query if the start week number is less then the end date number.

For example 49 and 1.
You do not write a query that way.  You use the week number and the year to produce a lower DATETIME value and an upper DATETIME value. Then you write a query using the BETWEEN subclause of the WHERE clause.  The article either tells it explicitly or give strong suggestions about it.  You want to convert the year + week number to an ISO-8601 DATETIME string, and your query will use the resulting DATETIME strings to look into the data base table.
Duh!  Don't know why that didn't occur to me.
That sounds perfect!
I will try it out first thing tomorrow and let you know how it goes.
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
simple

if($i==52) exit;
Firstly you should not allow  to select next week which is less then start week if you are taking into consideration weeks for your query and it is assumed that you need data for a
particular year only.
In case you intend to extend the query range spread over multiple and i assume consecutive
years then you should set a variable for currYear which should be year for the start week.
And if start week is more then end week it would be assumed that those weeks belong to
next year.
In such eventualities it would be advisable to do it in multiple steps. One each for each year.
Like one starting form 50th week and going upto 52nd week and then another query which starts at 1st week of the next year and going up to end week.
Naturally you would need to involve year in your query to get correct results.
Please see http://www.laprbass.com/RAY_week_number.php (and give yourself some time to read the code and output carefully -- it's subtle).

This program shows how to use the week number.  You can use it in combination with strtotime() and date() to come up with the appropriate DATETIME values to use in the query.

<?php // RAY_week_number.php
error_reporting(E_ALL);
echo "<pre>";

// REQUIRED SINCE PHP VERSION 5.1+
date_default_timezone_set('America/Chicago');

// WHAT IS THE WEEK NUMBER?
echo "WE ARE NOW IN WEEK " . date('W');
echo PHP_EOL;

$now = date('c', strtotime( date('Y-01-01') . ' + ' . date('W') . ' WEEKS' ));
var_dump($now);

// SHOW SOME "INTERESTING" THINGS ABOUT WEEK NUMBER
$years = array
( 2006
, 2007
, 2008
, 2009
, 2010
, 2011
, 2012
, 2013
, 2014
, 2015
)
;

foreach ($years as $y)
{
    $c = date('c', strtotime("$y-01-01"));
    $w = date('W', strtotime("$y-01-01"));
    echo PHP_EOL . "ON $c IT IS WEEK NUMBER $w";
    if ($w > '01')
    {
        $str = "$c NEXT MONDAY";
        $tsp = strtotime($str);
        $nur = date('c', $tsp);
        $nuw = date('W', $tsp);
        echo " AND ON $nur IT IS WEEK NUMBER $nuw";
    }
}

foreach ($years as $y)
{
    $str = "$y" . '-01-01' . ' NEXT MONDAY';
    $tsp = strtotime($str);
    $nur = date('r', $tsp);
    echo PHP_EOL . "$str = $nur";
}

// NO DIFFERENCE BETWEEN "NEXT" AND "FIRST"
foreach ($years as $y)
{
    $str = "$y" . '-01-01' . ' FIRST MONDAY';
    $tsp = strtotime($str);
    $nur = date('r', $tsp);
    echo PHP_EOL . "$str = $nur";
}

Open in new window

Best regards, ~Ray