I have a node with the following content (input mode: php code):
this is a <?php echo "test" ?>
If I output node->body, the output is
this is a <?php echo "test" ?>
What I want is:
this is a test
What is the easiest way to do this?
(I don't want all the default divs and other structural stuff coming with it when I call node_view)