i have a problem. This is the code.
$myid = array ();
$result_sub = mysql_query("select id search where keywords like '%$search%' ");
while(list($id) = mysql_fetch_row($result_sub))
{
array_push ($myid, $id);
}
How can i select id from search where id not in $myid ?
Thanks in advance,
Unique