Hi, sorry, this is a really noob question...
When I want to print part of the $content array within node.tpl.php (for example), I'll use something like <?php print $node->content['body']['#value']; ?>
I just want to understand what the ->
is all about. Presumably this indicates that $node
is something other than a normal array? ( Otherwise it'd be $node['content']['body']['#value']
)
Cheers.