Tagged Questions

1
vote
1answer
49 views

simple xml add namespaced child

I'm using SimpleXML to create an RSS feed for Google Products and I want to create a namespaced child but when I do for example $item->addChild('g:id', 'myid'); it adds ...
1
vote
1answer
516 views

PHP SimpleXML->addChild - unwanted empty namespace attribute

I'm attempting to use SimpleXML's addChild method of the SimpleXMLElement (actually a SimpleXMLIterator which is a subclass of SimpleXMLElement) to add child elements. My problem is that the source ...
0
votes
1answer
86 views

How to add an element to an array inside a SimpleXMLElement Object

I have this object parsed using SimpleXML: SimpleXMLElement Object ( [contact] => SimpleXMLElement Object ( [name] => Some guy [number] => ********** ) [messages] ...
0
votes
1answer
161 views

Help! How to add Child to specify Node using PHP simpleXML?

my xml structure is: <users> <user id="126"> <name>老黄牛三</name> <watchHistory> <whMonthRecords month="2010-10"> ...
0
votes
1answer
399 views

SimpleXml PHP addchild before any child

I know how to add child nodes with SimpleXml and PHP but i have a problem with the orders of those child elements. Lets say i have this xml structure album gallery1 gallery2 gallery2 ...
0
votes
1answer
237 views

SimpleXML addChild and addAttribute doesnt insert variables

For some reason, my addChild and addAttribute functions only seem to work when I enter in direct strings. They don't work when I enter in a variable string that I received from a html form POST. ...
0
votes
4answers
3k views

PHP SimpleXML::addChild with empty string - redundant node

Calling addChild with an empty string as the value (or even with whitespace) seems to cause a redundant SimpleXml node to be added inside the node instead of adding just the node with no value. ...