I am trying to run a class inside a class, it says that the object is there but when I 
go to get the info, it is not there. I have attached the code below and attache the 
xml.inc file. Any help would be greatly appreciated.

class myClass
        {
        function myFunc($var)
                {
                include("xml.inc");
                $obj = new xml($data,"xml");  
                if (is_object($obj)) 
                        {
                        print("Yes"); // It will print this
                        }
                else
                        {
                        print("No");
                        }
                        
        ///////// below we will see the status of the result  //////// 
        for($i=0;$i<sizeof($xml["Whatever"]);$i++) 
                { 
                $varvalue = $xml["Whatever_whatever"][$i]->Whatever[0] . "\n"; 
                }

                echo($varvalue); // Does not echo anything.

                } // end func

        } // end class






-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to