paddy_fields Posted April 7, 2014 Share Posted April 7, 2014 (edited) Hi, I've tried my best to get my head around this but I'm still coming up short I'm trying to get my script to.... find the ADVERT tag (which is already in my XML file) Add a new ROOT tag after ADVERT Add the attribute 'LOADTYPE' to ROOT assign the value 'A' to that attribute The logic of what I've written makes sense in my head but I'm getting a fatal error of undefined method DOMElement::createAttribute() I've tried researching this but I keep find 'simpleXML' references which isn't the method I'm using! $xmldoc = new DomDocument( '1.0' ); $xmldoc->preserveWhiteSpace = false; $xmldoc->formatOutput = true; if( $xml = file_get_contents( '../xml/totaljobs.xml') ) { $xmldoc->loadXML( $xml, LIBXML_NOBLANKS ); // find the <ADVERT> tag $advert = $xmldoc->getElementsByTagName('ADVERT')->item(0); // create the <ROOT> tag $root = $xmldoc->createElement('ROOT'); // add the new <ROOT> tag $advert->appendChild($root); // add 'LOADTYPE' attribute to <ROOT> $attr1 = $root->createAttribute('LOADTYPE'); // Set the value for the LOADTYPE attribute $attr1->value = 'A'; // Append attribute to $root->appendChild($attr1); // Save the updated xml $xmldoc->save('../xml/totaljobs.xml'); Is createAttribute() the right way of doing this? I'm completely new at XML so this is quite a learning curve. Edited April 7, 2014 by paddyfields Quote Link to comment Share on other sites More sharing options...
paddy_fields Posted April 7, 2014 Author Share Posted April 7, 2014 I worked it out... I should have added the attribute to the $xmldoc, not $root $attr1 = $xmldoc->createAttribute('LOADTYPE'); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.