Skip to content

Instantly share code, notes, and snippets.

@nosajhpled
Created December 4, 2022 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nosajhpled/69e293c977ed2f16db6d459c57035113 to your computer and use it in GitHub Desktop.
Save nosajhpled/69e293c977ed2f16db6d459c57035113 to your computer and use it in GitHub Desktop.
PHP : Alternating Row Color in a HTML Table
.alt { background-color:#F0F2FF; }
echo '<tr '.(!isset($alt) ? $alt = 0 : $alt++ % 2 == 0 ? 'class="alt"' : '').'>';
#PHP
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment