
08-16-2005, 07:47 PM
|
|
|
Join Date: Jan 2004
Location: Portland, Oregon
Posts: 172
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by jugo
Change this line:
PHP Code:
if($Forums){
$SQL = " where forumid in({$Forums})";
}
To this:
PHP Code:
if($Forums){
$SQL = " where forumid NOT in({$Forums})";
}
|
Ah! No wonder where NOT forumid in({$Forums}) wasn't working  . Thanks for that.
|