I need to be able to get returned the names of all OG groups to which the current node has been posted. In researching it I found the following code, but it returns nothing. Note that I did add the opening and closing PHP tags in my actual code. Can someone offer some guidance. Thanks.
$group_links = array();
foreach ($node->og_groups_both as $key => $name) {
$group_links[] = l($name,'node/'.$key,array('class'=>'group'));
}
$group_links = implode(', ',$group_links);
print ($group_links);