Hi,

Thnx a lot for your suggestion.. Well the moment I removed the space the
error disappeared but the page doesnt show any output ... tried trapping
errors but none appears..

any further ideas pl!!!

Thnx again,
sands
-----Original Message-----
From: Jason G. [mailto:[EMAIL PROTECTED]]
Sent: quinta-feira, 17 de Janeiro de 2002 18:41
To: Sandeep Murphy; [EMAIL PROTECTED]
Subject: Re: [PHP] Fatal error: Call to a member function on a
non-object in example 1.php on line 66


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]

-- 
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