node_load() in Drupal
- http://api.drupal.org/api/function/node_load/6
- 4.7 – 6 node_load($param = array(), $revision = NULL, $reset = NULL)
- Z. B. für den Body eines Nodes (siehe Body eines Nodes in Drupal)
$fullnode = node_load($nid, NULL, TRUE);
$fullnode->body; - Befehl braucht viel Memory, daher direkt SQL verwenden, siehe Body eines Nodes in Drupal.