Ma non ti avevo già risposto qui alla stessa domanda?
http://forum.html.it/forum/showthrea...readid=1008648

select * from tabella where tipologia in (1,3,4)

se hai un array usa implode per convertirlo in stringa

esempio
$array = array(1,3,4);
$stringa = implode(',',$array);

select * from tabella where tipologia in ($stringa)