Tagged Questions
3
votes
5answers
142 views
php - adding elements to other elements
I have been using .net for the past couple of years, and I like the way you can add controls at any point in the page from anywhere. For example, you can say Head.Controls.add(new LiteralControl("")) ...
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
518 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
2answers
193 views
ActionScript AddChild to Stage from Class
I am trying to add an object to my main stage via the addChild() method. Normally, when working within the FLA itself, using addChild(myObject) works just fine. However, it does not work within an ...
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.
...