Jump to content

XML insertBefore


norbi35

Recommended Posts

Hello. I'm a newby to php and can't figure out how to apply 'insertBefore' method in my case:

 

XML file:

<gallery>

<image imagePath="galleries/gallery_1/images/1.jpg" thumbPath="galleries/gallery_1/thumbs/1.jpg"> </image>

 

<image imagePath="galleries/gallery_1/images/2.jpg" thumbPath="galleries/gallery_1/thumbs/2.jpg"> </image>

 

<image imagePath="galleries/gallery_1/images/3.jpg" thumbPath="galleries/gallery_1/thumbs/3.jpg"> </image>

 

</gallery>

 

 

 

 

PHP file:

 

$xml = new DOMDocument();

$xml->load('list.xml');

       

$image = $xml->createElement('image');

$image->setAttribute('imagePath','galleries/gallery_1/images/MyImage.jpg');

$image->setAttribute('thumbPath','galleries/gallery_1/thumbs/MyThumb.jpg');

       

echo "<xmp>NEW:\n". $xml->saveXML() ."</xmp>";

 

 

I would like to insert the new $image  before the existing tag <image> that has index = 2;

 

Thanks in advance for any advice.

 

Regards

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.