Quote:
Originally posted by ladyfyre
Nope Xenon, the above didn't work for me 
This is the exact code I put in...it is giving a parse error.
PHP Code:
if($bbuserinfo[usergroupid]==26)_{
$canedit[usergroupids]="2 3 9 25";_
}_else_{
$canedit[usergroupids]="2 9 12 17 19 22 23 ";_
}
|
ladyfyre just use this code:
PHP Code:
if($bbuserinfo[usergroupid] == 26) {
$canedit[usergroupids] = "2 3 9 25";
} else {
$canedit[usergroupids] = "2 9 12 17 19 22 23 ";
}
don't have the "_" included
g-force2k2