By macho on
Still wrapping my head around the basics. If I have a node object I've obtained with "$nodevar = node_load(...)" that contains CCK fields, how can I access these? I can see them if I do print_r($nodevar), all in the form field_*, but $nodevar.field_* doesn't work, nor does $nodevar[field_*], nor $nodevar->field_*. What am I missing?
Comments
damn
never mind, $nodevar->field_* does work.