/    Sign up×
Community /Pin to ProfileBookmark

I’ve been working on a script to open an XML file, insert a node, then save the file again.

[code=php]
$url = ‘../v3flashslideshow/slideshow_data0.xml’;
$xml = new DomDocument();
$xml->formatOutput = true;
$xml->preserveWhitespace = false;
$xml->load($url);
$xpath = new DOMXPath($xml);

$first = $xpath->query(‘//galleries/gallery/img’)->item(0);

// create node
$new = $xml->createElement(“img”);
$xml->appendChild($new);
$image = $xml->createAttribute(“src”);
$new->appendChild($image);
$new->setAttribute(“src”, $_GET[‘image’]);

$first->parentNode->insertBefore($new, $first);

echo $xml->save($url);
[/code]

When it writes the file, the new node is added twice.

When I change the last line to:

[code=php]
echo $xml->saveXML();
[/code]

just to display it on the screen, it works as it is supposed to and the new node only appears once.

Any ideas anyone?

Thanks in advance.

to post a comment
PHP

0Be the first to comment 😎

×

Success!

Help @xclntdesign spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.29,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...