Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1001969
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T07:45:33+00:00 2026-05-16T07:45:33+00:00

I am creating a table (stats_1) dynamically and would like to have each row

  • 0

I am creating a table (stats_1) dynamically and would like to have each row of different background color. So far, all the lines have the same background color.

I have the following php code that prints echoes out and statements:

$keys = array('Col1', 'Col2','Col3','Col4','Col5','Col6','Col7');
echo '<table id="stats_1"><tr>';            
foreach ($keys as $column)
   echo '<th>' . $column . '</th>';
    echo '</tr>';

foreach ($data as $row){                        
   echo '<tr class="alt">';                     
     foreach ($keys as $column)
        if (isset($row[$column])){              
          echo '<td>' . $row[$column];
          } else {
          echo '<td>' . '' . '</td>';
        }
}
echo '</table>';

I need some help making EVERY OTHER ROW ($row) have a different COLOR, but don’t know how to do that programmatically with the echo statement. So, it would alternate printing between:

echo '<tr class="alt">';  or   echo '<tr>';

I define that in a class:

#stats_1 tr.alt td
{
color:#000000;                  
background-color:#E0E0FF;       
}

THanks for your help/input.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T07:45:34+00:00Added an answer on May 16, 2026 at 7:45 am

    Try:

    $counter = 0;
    foreach ($data as $row){
      $counter++;
    
      $class = $counter % 2 === 0 ? 'foo' : 'bar';
      echo '<tr class="' . $class . '">';
    
      // more code....
    

    Where foo and bar are supposed to be the class names of your alternate colors.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am dynamically creating a table which I want to have clickable rows. When
I am creating a large table dynamically using Javascript. I have realised the time
I'm creating a table that looks something like this. CREATE TABLE packages ( productCode
I have a temp table I am creating a query off of in the
It is my understanding that the default behavior when creating a table in SQL
If you're creating a temporary table within a stored procedure and want to add
When I am creating a new database table, what factors should I take into
I'm attempting at creating a menu from a table using the Suckerfish css menu
I'm creating a bunch of migrations, some of which are standard create table or
Does anyone have any suggestions for creating meta tables in a database? These tables

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.