Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
You're very vague, show an example of your output including the breaks in question. – Blake Apr 19 '12 at 15:28
1  
You need to look into the nl2br() function either before you save the body of the node or before printing it to the screen. – KennyDs Apr 19 '12 at 15:30

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.