为什么这个for循环不起作用(为什么最后一个索引没有显示值)

时间:2014-04-06 22:52:54

标签: php mysql sql

所以我有这个代码设置来显示食物条目的到期日期在桌子上,从上到下,从最早到最晚。如果它们在当前日期的三天内,则文本将为黄色,如果在此之后的任何时间,文本将为红色。

无论如何,我最近测试并意识到,如果两个条目具有相同的日期,我的代码设置方式,它将只显示其中一个条目,但是到期日期在表上的次数(第一个条目添加的确切日期。

所以我设置一个for循环使用一些查询来检查是否有多个条目然后随后显示每个条目。问题是,我到达循环的最终索引,并且不会显示与该日期关联的名称。下面是守则:

<?php


      $sql1=mysql_query("SELECT email from loggedin WHERE session_id='$userid'");
      $sess=mysql_fetch_array($sql1);
      $newValue=$sess['email'];
      $sqlLength = mysql_query("SELECT * FROM food WHERE OwnerEmail='$newValue'"); 
      ?>


      <div class="table-responsive">
      <h2 class="sub-header">Expiration Dates</h2>

        <table class="table table-striped">
          <thead>
            <tr>
              <th>Food Name</th>
              <th>Brand Name</th>
              <th>Food Group</th>
              <th>Location</th>
              <th>Expiration Date</th>
            </tr>

          </thead>
          <tbody>
 <?php
    $i = 0;    
 while($test = mysql_fetch_array($sqlLength)){
    $dates[$i] = $test['ExpirationDate'];
    $i++;
 }
 $length=count($dates);

 for($x=0;$x<$length;$x++){
     $year[$x]=substr($dates[$x],6,4);
     $month[$x] = substr($dates[$x],3,2);
     $day[$x] = substr($dates[$x],0,2);
 }



for($x=0;$x<$length-1;$x++){
    for($y=$x+1;$y<$length;$y++){
        if($year[$x] > $year[$y]){
            $temp=$year[$x];
            $year[$x]= $year[$y];
            $year[$y]=$temp;

            $temp=$month[$x];
            $month[$x]= $month[$y];
            $month[$y]=$temp;

            $temp=$day[$x];
            $day[$x] = $day[$y];
            $day[$y] = $temp;
        }


        elseif($year[$x] == $year[$y]){
            if($month[$x] > $month[$y]){
                $temp=$month[$x];
                $month[$x]= $month[$y];
                $month[$y]=$temp;

                $temp=$day[$x];
                $day[$x] = $day[$y];
                $day[$y] = $temp;
            }

            elseif($month[$x] == $month[$y]){
                if($day[$x] > $day[$y]){
                    $temp=$day[$x];
                    $day[$x] = $day[$y];
                    $day[$y] = $temp;

                }

            }

        }

    }
}



for($x=0;$x<$length;$x++){
    $orderedDates[$x]= "$day[$x]-$month[$x]-$year[$x]"; 
}

$currentYear=date("Y");
$currentMonth=date("m");
$currentDay=date("d");


$multiple="false";
for($x=0;$x<$length;$x++){
    $class='';
 if($multiple=="false"){

    $sql2 = mysql_query("SELECT * FROM food WHERE OwnerEmail='$newValue' AND ExpirationDate='$orderedDates[$x]'") or die(mysql_error());
    $rows = mysql_fetch_array($sql2);
    if(count($rows) > 7){
        $y=1;
        $multiple="true";
        $count=count($rows)/7;
    }
 }

 else{
    $rows = mysql_fetch_array($sql2);
    $y++;

    //$x++;
 }



        $year=substr($rows['ExpirationDate'],6,4);
        $month=substr($rows['ExpirationDate'],3,2);
        $day=substr($rows['ExpirationDate'],0,2);

        if($year==$currentYear){
            if($month==$currentMonth){
                if(($day - $currentDay) <= 3){
                    $class='expBad';
                }
            }
        }

        if($currentYear > $year){
            $class='expGross';
        }

        elseif($currentYear == $year){
            if($currentMonth > $month){
                $class = 'expGross';
            }
            elseif($currentMonth == $month){
                if($currentDay > $day){
                    $class='expGross';
                }
            }
        }

?> 

            <tr>
              <td><b><?php echo $rows['Name'] ?></td>
              <td><b><?php echo $rows['Brand'] ?></td>
              <td><b><?php echo $rows['Type'] ?></td>
              <td><b><?php echo $rows['Container'] ?></td>
              <td><b><?php echo "<span class=\"$class\">".$rows['ExpirationDate']."</span>" ?></td>
            </tr>

             <?php

             if($y == $count){

                 $multiple="false";

             }
    }
    /*
    $er=mysql_query("SELECT Name FROM food WHERE ExpirationDate='$orderedDates[3]'");
    $der = mysql_fetch_array($er);
    $mer=$der['Name'];
    echo $mer;
    */
?>

         </tbody>
        </table>

要了解一些信息,我的食物表有7列。

orderedDates为我提供了一个正确排序的数组(我知道有更好的方法可以做到这一点,但我写的时候只是启动了php)

有4个食物条目。

问题是,当我到达$ x = 3时,由于某种原因它没有显示该条目的任何列值。

以下是表格中的条目。

what    s   Grains  Pantry  12-02-2012
why     s   Grains  Pantry  12-02-2012
who     s   Grains  Pantry  08-04-2014
where   s   Grains  Pantry  10-04-2014

我只获得前3个条目,然后第4行为空。

其他两列是id和OwnerEmail

1 个答案:

答案 0 :(得分:1)

事实证明,count()函数返回的数字不是我想象的那样。

我认为对于具有唯一到期日期的值,$ count将等于1。 但是它是2,这导致它比我想要的更多次运行mysql_fetch_array函数,使它指向一个空值;

相反,我使用以下代码来获取具有相同日期的食品数量:

$sql2 = mysql_query("SELECT Name FROM food WHERE OwnerEmail='$emailname' AND ExpirationDate='$orderedDates[$x]'") or die(mysql_error());
    $count2=0;
    while($rows2 = mysql_fetch_array($sql2)){
    $count2++;
    }