PHP beginner |
|
Je moet een counter instellen en vervolgens deze in je loop controleren. In de loop kun je dan een kleur toewijzen. Ik heb een simpel voorbeeldje voor je gemaakt.
<?php
$arFruitMachine = array(0 => "aarbei", 1 => "appel", 2 => "peer", 3 => "banaan");
$intCount = 0;
echo '<table cellspacing="0">';
while($intCount < 3)
{
$strFruitItem = $arFruitMachine[array_rand($arFruitMachine)];
$strBgColor = "#777777";
if($intCount % 2)
{
$strBgColor = "#333333";
}
echo '<tr style="background: ' . $strBgColor . ';"><td>' . $strFruitItem . '</td></tr>';
$intCount++;
}
echo '</table>';
?>
<?php $arFruitMachine = array(0 => "aarbei", 1 => "appel", 2 => "peer", 3 => "banaan"); $intCount = 0; echo '<table cellspacing="0">'; while($intCount < 3) { $strFruitItem = $arFruitMachine[array_rand($arFruitMachine)]; $strBgColor = "#777777"; if($intCount % 2) { $strBgColor = "#333333"; } echo '<tr style="background: ' . $strBgColor . ';"><td>' . $strFruitItem . '</td></tr>'; $intCount++; } ?>
|