[PHP] reduce the following code if ($colorVar == 'Black' || $colorVar == 'Red' || $colorVar == 'White' || $colorVar == 'Blue' ){

2005-03-23 Thread Lupita
Hello; Can any one show me a way to reduce the following code? ## ?php if ($colorVar == 'Black' || $colorVar == 'Red' || $colorVar == 'White' || $colorVar == 'Blue' ){ $someVar = Something

Re: [PHP] reduce the following code if ($colorVar == 'Black' || $colorVar == 'Red' || $colorVar == 'White' || $colorVar == 'Blue' ){

2005-03-23 Thread Frank Arensmeier
if ($colorVar == 'Black' || $colorVar == 'Red' || $colorVar == 'White' || $colorVar == 'Blue' ){ $someVar = Something; } ? I was thinking there must be a way to place all the Colors into a $allColorVar and check to see if $colorVar = $allColorVar