I have a PHP script that adds story node to my drupal website:
function post_to_webpage($title, $body, $teaser, $promote) {
//set the working directory to your Drupal root
chdir($_SERVER["DOCUMENT_ROOT"].'/webpage/');
//require the bootstrap include
require_once './includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
//(loads everything, but doesn't render anything)
$node = new stdClass();
$node->type = 'story';
$node->title = $title;
$node->body = $body;
$node->teaser = $teaser;
$node->uid = 1;
$node->status = 1;
$node->promote = $promote;
$node->format = 2;
$node->sticky = 1;
node_save($node);
return $node->nid; }
however i frequently see r\n\ in the content of these nodes. What could cause this?
EDIT: Example output:
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed vestibulum ultrices ultricies. Curabitur nibh risus, mattis rhoncus dignissim vel, laoreet sit amet neque. Praesent blandit arcu et nisl ornare semper.
\r\n
\r\n
Vestibulum eleifend malesuada odio, a aliquet mauris sagittis sed. Proin sit amet libero quis nibh malesuada mattis in sed urna. Nullam rutrum egestas interdum. Sed dui lorem, faucibus et sagittis in, volutpat at velit.