I have a loop that creates a new div for each unique event
while($event!=$nextEvent){
echo'<div id='sportType'>';
//some code
echo'</div>'
}
I would like to automatically change the background-colour to a different background-colour for each created div, each div must be a separate/unique colour, there will never be more than 7 divs
Something like this
Any idea how I can do this?