Last Updated: February 25, 2016
·
4.015K
· dubrod

php shorthand if/else odd/even div class loop

$count = 0;
foreach($posts as $post) {          
//odd & even styling
$oe_style = ++$count % 2 ? "odd" : "even";
    //or
    echo '<div class="' . (++$count % 2 ? "odd" : "even") . '">';
}