I cant see a fault and the values exit mysql_numrows also gives me 2
the values are integers in the db.
I get 2 result running the query in the phpmyadmin
query is
$army=mysql_query("select size from boots where height=102010 and leather='y' or height=107505 and leather='y'");
$result=mysql_fetch_array($army);
if (in_array(102010, $result)) {
echo "Got 102010";
}
if (in_array(107505, $result)) {
echo "Got 107505";
}