hello.. i have this database Database Image and an array of user id
<?php
$users = array('0000000002','0000000003');
//i want to show only the post from these $users only..
// i came up with this query..
mysql_query("SELECT * FROM it_posts WHERE postOwner = '0000000002' OR postOwner = '0000000003'");
//but it will not display each post from the $users
?>