First of all, make sure the $root->children() returns an array of objects.

Second of all, remove the space between $All_nodes and [1].

Your code should look like:
$childNodes=$All_nodes[1]->children();

If that does not work, you may have to create a temp var to use...
$tmp = $All_nodes[1];
$childNodes=$tmp->children();

-Jason Garber
IonZoft.com

At 06:21 PM 1/17/2002 +0000, Sandeep Murphy wrote:
>Hi,
>
>I keep getting this error "Fatal error: Call to a member function on a
>non-object in /www/html/smurthy/example1.php on line 66" and simply unable
>to figure out why this is occuring..
>
>64 $root = $dom->root();
>
>65 $All_nodes = $root->children();
>
>66 $childNodes=$All_nodes [1]->children();
>
>can anyone help me out pleaseee
>
>TIA,
>sands
>
>--
>PHP General Mailing List (http://www.php.net/)
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to