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 6356891
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T23:03:31+00:00 2026-05-24T23:03:31+00:00

php part <?php $f = fopen( temp.xml,r ); $str = ; while( $line =

  • 0
php part

<?php
    $f = fopen( "temp.xml","r" );
    $str = "";
    while( $line = fgets($f) ){
        if( !($line[1]=='?' || $line[1]=='b' || $line[2]=='b') ){
            $str.= $line."<br>";
        }
    }
    fclose( $f );

    $xdoc = new DomDocument;
    $xdoc->Load('text.xml');
    $body = $xdoc->getElementsByTagName('textBody')->item(0);

    $txtNode = $xdoc ->createTextNode ( $str );
    $body -> appendChild($txtNode);

    $test = $xdoc->save("text.xml");
?>

xml file updated.

<textBody>      
    &lt;br&gt;          
    &lt;br&gt; &amp;#13;
    &lt;br&gt;&lt;font&gt;Heading Here...&lt;/font&gt;&amp;#13;
    &lt;br&gt;&lt;font&gt;Text Here...&lt;/font&gt;&amp;#13;
    &lt;br&gt;
</textBody>



I want to create child in xml file but the special characters are converted into their codes as shown above.
I want the output as

<br><br>
<br><font>Heading Here </font>
<br><font>Text Here</font>
<br>
  • 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-05-24T23:03:33+00:00Added an answer on May 24, 2026 at 11:03 pm

    A textNode contains only character-data.

    If you like to create and insert a fragment containing multiple element-nodes use DOMDocument::createDocumentFragment

    $xdoc = new DomDocument;
    $xdoc->Load('text.xml');
    $body = $xdoc->getElementsByTagName('textBody')->item(0);
    
    $fragment = $xdoc ->createDocumentFragment ();
    $fragment->appendXML( $str );
    $body -> appendChild($fragment);
    

    Please note: appendXML() is not a part of the DOM, it’s a PHP-implementation.

    If you like to do it a “clean” DOM-way, create a new document, load the string using loadXML() and import the result into the other document.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Below is part of the XML which I am processing with PHP's XSLTProcessor :
I am part of a team creating a web application using PHP and MySQL.
I am part of a team creating a web application using PHP and MySQL.
I've been battling PHP's email reading functions for the better part of two days.
In my (PHP) web app, I have a part of my site that keeps
How would you find the fractional part of a floating point number in PHP?
I have a multi part question for a php script file. I am creating
The following code is part of a PHP web-service I've written. It takes some
I have a .htaccess file to remove the index.php part of the codeigniter-style URL.
i am new to php, and i am trying to do a script that

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.