Jump to content

loop through array with incremental for striped table


Wal-Wal-2

Recommended Posts

I have an array of data in which I want to display in a table with the first row of data to not be formatted. In the second row of data, I want it formatted with the CSS class of "success". When I run this code, I do not get any formatting of any rows in the table. I have tried various different options without success. Any help would be greatly appreciated.

 

<?php
$counter = 0;
      while($row = mysql_fetch_array($query)) {
           if($counter % 2 == 0) {
                 //output data from each row of data with no class of "success"
                 echo "<tr class='text-left'>";
                       if (empty($row[endDate])) {
                          echo "<td>".$row[startDate]."</td>";  /* only one date */
                          } else {
                                echo "<td>".$row[startDate].'-'.$row[endDate]."</td>";  /*date range */
                           }
                 echo "<td>".$row[rideName]."</td>";
                 echo "<td>".$row[rideDesc]."</td>";
                 echo "<td>".$row[location]."</td>";
                 echo "<td><a href='".$row[link]."'>".$row[source]."</a></th>";
                 echo "</tr>";
                $counter++;
           } else {
                           //output data from each row
                 echo "<tr class='text-left success'>";
                                            if (empty($row[endDate])) {
                                                echo "<td>".$row[startDate]."</td>";
                                            } else {
                                                echo "<td>".$row[startDate].'-'.$row[endDate]."</td>";
                                            }
                 echo "<td>".$row[rideName]."</td>";
                 echo "<td>".$row[rideDesc]."</td>";
                 echo "<td>".$row[location]."</td>";
                 echo "<td><a href='".$row[link]."'>".$row[source]."</a></th>";
                 echo "</tr>";    
                $counter++;
           } /* end if else */
      } /* end while */
?>

Edited by Wal-Wal-2
Copied wrong set of code
Link to comment
Share on other sites

Try incrementing the counter at the end of the loop.

Also no need for all the duplicate code. All you need is to set a variable

$suc = $counter % 2 == 1 ? 'success' : '';

E.G.

$counter = 0;
foreach ($res as $row) {
    $suc = $counter % 2 == 1 ? 'success' : '';
    $tdata .= "<tr class='$suc'>
                    <td>{$row['firstname']}</td>
                    <td>{$row['lastname']}</td>
              </tr>";
    $counter++;
}

then

<table>
    <?=$tdata?>
</table>

 

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.