hi.. i was searching about the mod function in php.. but i cannot find anything related to this.. can anyone help me? the following is my coding...
$color_div = 1
while ($color_div < 10) {
if ($color_div mod 2 = 1)
echo "line $color_div is yellow";
else
echo "line $color_div is white";
}
thank you for your help..