if ($group == developer || admin) { //Do Some Stuff }
Basically I want to 'do some stuff' if the user belongs to either one or both the developer or admin group...
Is that the correct syntax for what I'm trying to do?
Thanks
do this
if ($group == "developer" || $group =="admin") {
//Do Some Stuff
}
reg kevin
yeah, I guess that would make more since...
Thanks!