Round Rock / Austin, Texas
Drupal Web Developer
Printing CCK Fields in Custom node.tpl.php Files
To let Drupal handle all the wrappers and formatting, use this:
print render($content['field_fancy_title']);
To print the raw, untouched value, use this:
print $content['field_fancy_title']['#items']['0']['value'];