Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The value for $i in the code below is always 2. It seems it increments to the first time, but only that time. Any thoughts?

 foreach ($records as $row){

    $i = 1;
    $i++

    if ($i % 2 != 0){
        $trClass = 'odd';               
    }else{
        $trClass = 'even';
    }

    echo '<tr class="' . $trClass . '"><td>' . 
        anchor("admin/delete/$row->id", 'delete') . '</td><td>' . 
        anchor("admin/edit/$row->id", 'Edit') . '</td>';

    foreach ($row as $key => $value){
        echo '<td>' . $value . '</td>';
    }

    echo '</tr>';
    $i++;
}
share|improve this question
1  
...also: You're incrementing $i twice... watch that. – Wesley Murch Jan 16 '12 at 21:34

closed as too localized by skjaidev, Wesley Murch, BK., Wooble, Graviton Jan 17 '12 at 4:28

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

4 Answers

up vote 8 down vote accepted

You're reassigning it to 1 every time through the loop. Initialize it outside the loop instead.

$i = 1;
foreach ($records as $row){
    /*
     ...
    */

    $i++;
}

Also I see that you're incrementing both at the beginning of the loop and at the end. I assume you only want to do it once (probably keep only the one at the end; remove the one at the beginning).

share|improve this answer
Yep. Not using my eyes very well today. – user783261 Jan 16 '12 at 21:36

Your code has a logical error in that it declares $i in every iteration of the loop.

This is what you do:

declare $i = 1 in every iteration and then increment that $i.

so in every iteration, you get $i = 2 all the time.

declare $i = 1 outside the foreach loop and increment $i just once like so:

$i = 1;
foreach ($records as $row){

        if ($i % 2 != 0){
           $trClass = 'odd';               
        }else{
           $trClass = 'even';
        }

        echo '<tr class="' . $trClass . '"><td>' . anchor("admin/delete/$row->id", 'delete') . '</td>
            <td>' . anchor("admin/edit/$row->id", 'Edit') . '</td>';

                 foreach ($row as $key => $value){
                     echo '<td>' . $value . '</td>';
                 }
         echo '</tr>';
         $i++;

    }
share|improve this answer

start it this way

$i = 1;
foreach ($records as $row){
    $i++;
    ...
share|improve this answer
Of course. I'm blind. – user783261 Jan 16 '12 at 21:36

please put $i = 1; before foreach

share|improve this answer

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