I'm trying to use node_load to pass php variables (as variables!) from one node into another, and having no luck.
So in other words, in node/1 I have listed a bunch of variables that I want to be available for php parsing in node/2.
Is it possible?
edit:
Page 1 (www.something.com/node/1) has this text in the body:
$var1 = "Some text";
Page 2 (www.something.com/node/2) has this text in the body:
$node = node_load(1); print $node->body; print $var1;
I want to use node content (as an included file) as if I was using PHP's include function