I would like to know how can I manually insert some php code inside a cck node (in Drupal). The thing is that I have this stuff:
$output .= '<br>';
$mor = _pitch_detalle($cid, $previamente, $luego);
if (sizeof($mor) > 0){
$output .= theme('pitch', $mor);
}
return $output;
This stuff shows some information that changes from day to day, and each time the users view the page, the information changes. I want the user to see an unmodified version of that code, the same information that existed when the user created the page.
As the user cannot edit the page, I think that ist´s pretty safe to say that if I enter that code inside a field, it will remain unchanged. Is that assumption correct? How could I do that?
Thanks for your help!!! Rosamunda