Interval If not this then that... [PHP]

I am now working on a PHP tagboard. As you know that tagboard, the first tag has one colour and the second tag has another colour, the third tag has the first tag colour and so on… (Alternate Background Colours) How do I do echo the div tag to to have this sort of interval? I have seen one other tagboard script that has

$row = ($row_count % 2) ? “bgcolor1” : “bgcolor2”;

But I’m a begginer at PHP so I don’t know much…