Is there a function to see if an array has a specific value under any key? I believe there is but I can't remember it offhand.
Like if $array[0] = 2 and $array[1] = 3
if (array has a 2) echo blah
something like that
in_array() is what you ar elooking for in_array
ah yeah thx!
array_search()...