Welcome Guest, Not a member yet? Register   Sign In
Error: Cannot add element Title number 1 when only 0 such elements exist
#2

[eluser]danmontgomery[/eluser]
You only ever have one Title element, why are you incrementing $i?

Also, $venue['Title'] is a simplexmlelement object, not an array, and you can't access integers as object members, eg:

Code:
class my_class {
    var $1 = 'foo';  // Will throw an error

    function my_class() {
        echo $this->1; // As will this
    }
}

You should be using simplexml functions like children(), I believe...

Code:
$node = $venue['Title']->children();
echo $node[0];

http://php.net/manual/en/book.simplexml.php


Messages In This Thread
Error: Cannot add element Title number 1 when only 0 such elements exist - by El Forum - 09-02-2010, 01:51 PM



Theme © iAndrew 2016 - Forum software by © MyBB