have set up a flexinode with a company's details. address etc. also want to list services offered,description and costs.
Rather than have a long list I wanted to break it down so that each service was a seperate node. Via snippets I found i could use

<?$node = node_load(array("nid" => "4")); 

// print the node's body
print $node->body; ?>

to display a service body within the main company node. So if I make "nid" =>"$Ric" I could pull in different services by changing the value of $Ric right? I'm getting stuck on how to use a form to set $Ric.

any clues on how to do this or a better way to pull in the service body

Thanks
Ric