I need to compare a single number to a list of them.
for example, something like
if ($number == /*any one of a list of numbers*/)
{
Do some stuff. . .
}
I think i should use an array, but im not sure. plus, there are alot of numbers to compare to the other, so it would be tedious repetedly listing them.
Thanks.