This is part of my code:
if ($group == 0) $cfg->errmsg ("Please select a group.$group");
Notice that there should be an error message if $group is zero. And then in the error message the value of $group is displayed.
So the script outputs this: Please select a group.Ontario
That means that $group is Ontarion and ZERO in the SAME TIME!!!!
WHT??