Welcome Guest, Not a member yet? Register   Sign In
foreach alternate like table
#3

[eluser]WanWizard[/eluser]
Are your array keys numeric or it an an associative array?

For numeric, try
Code:
foreach( $list as $key => $item )
{
    $class = $key % 2 ? "odd" : "even"
}

For associative, try
Code:
$i = 0;
foreach( $list as $item )
{
    $class = $i++ % 2 ? "odd" : "even"
}


Messages In This Thread
foreach alternate like table - by El Forum - 01-12-2011, 04:07 PM
foreach alternate like table - by El Forum - 01-12-2011, 04:11 PM
foreach alternate like table - by El Forum - 01-12-2011, 04:13 PM
foreach alternate like table - by El Forum - 01-12-2011, 04:17 PM
foreach alternate like table - by El Forum - 01-12-2011, 07:43 PM
foreach alternate like table - by El Forum - 01-13-2011, 07:51 AM
foreach alternate like table - by El Forum - 01-13-2011, 01:09 PM



Theme © iAndrew 2016 - Forum software by © MyBB