Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8992529
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T22:58:34+00:00 2026-06-15T22:58:34+00:00

I have a small problem: the tags, e.g. <br> tags, are not parsed when

  • 0

I have a small problem: the tags, e.g. <br> tags, are not parsed when submitting a PHP DomDocument. Here is my PHP code:

$doc = new DOMDocument();
$doc->loadHTMLFile("Test.html");
$doc->formatOutput = true;
$node = new DOMElement('p', 'This is a test<br>This should be a new line in the same paragraph');
$doc->getElementsByTagName('body')->item(0)->appendChild($node);
$doc->saveHTMLFile("Test.html");
echo 'Editing successful.';

Here is the HTML code (before editing):

<!DOCTYPE html>
<html>
    <head>
        <title>Hey</title>
    </head>
    <body>
        <p>Test</p>   
    </body>
</html>

(after editing)

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Hey</title>
</head>
<body>
    <p>Test</p>   
<p>This is a test&lt;br&gt;This should be a new line in the same paragraph</p>
</body>
</html>

Why is it not working?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T22:58:35+00:00Added an answer on June 15, 2026 at 10:58 pm

    You are trying to append a fragment, which does not work as ‘normal’ string (how ever would it know what you want it to encode and what not?).

    You can use theDOMDocumentFragment::appendXML() function, but as the name states, it wants XML, not HTML, so for this the <br> needs to be self-closing (because we are working in XML mode):

    <?php
    $doc = new DOMDocument();
    $doc->loadHTMLFile("Test.html");
    $doc->formatOutput = true;
    $node = new DOMElement('p');
    $p =  $doc->lastChild->lastChild->appendChild($node);
    $fragment = $doc->createDocumentFragment();
    $fragment->appendXML('This is a test<br/>This should be a new line in the same paragraph');
    $p->appendChild($fragment);
    $doc->saveHTMLFile("Test.html");
    

    Another solution not involving altering your string is to load a seperate document as HTML (so, $otherdoc->loadHTML('<html><body>'.$yourstring.'</body></html>'), and then loop through it importing in the main doc:

    <?php
    $doc = new DOMDocument();
    $doc->loadHTMLFile("Test.html");
    $doc->formatOutput = true;
    $node = new DOMElement('p');
    $p =  $doc->lastChild->lastChild->appendChild($node);
    $otherdoc = new DOMDocument();
    $yourstring = 'This is a test<br>This should be a new line in the same paragraph';
    $otherdoc->loadHTML('<html><body>'.$yourstring.'</body></html>');
    foreach($otherdoc->lastChild->lastChild->childNodes as $node){
        $importednode = $doc->importNode($node);
        $p->appendChild($importednode);
    }
    $doc->saveHTMLFile("Test.html");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a small problem. I am making a site that has Tags and
have small problem, and would very much appreciate help :) I should convert byte
I have small problem with Spring MVC. Basically what I'm trying to do is
I have a small problem and I've figured out where when and why it
I have a small problem which i can't seem to figure out. I tried
I have a small problem which i can't seem to solve myself. Look at
I have a small problem with the visibility of an ellipse. In runtime I
I have a small problem with Smarty... I have two different template files in
I have a small problem where I want to find the next active item
i have a small problem, i am creating a edit page in my asp.net

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.