Skip to content

Instantly share code, notes, and snippets.

@vrushank-snippets
Created January 21, 2013 05:36
Show Gist options
  • Save vrushank-snippets/4583841 to your computer and use it in GitHub Desktop.
Save vrushank-snippets/4583841 to your computer and use it in GitHub Desktop.
PHP : ODD - EVEN CLASS
for($i=0;$i<10;$i++)
{
echo "<div class=class".($xyz++%2).">Hello</div>";
}
// OR
for($j=0;$j<10;$j++)
{
$class = ($j%2 == 0)?'even':'odd';
echo "<div class=$class>Hello</div>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment