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. Any help would be 
greatly appreciated.

class myfirstClass
        {

        
        function Track($tracknum)
                {
                include("insideclass.inc");
        
                $obj = new InsideClass($data,"bob");  
                
                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($bob["Whatever"]);$i++) 
                        { 
                        $nine = $bob["Whatever_whaterver"][$i]->Whatever[0] . "\n"; 
                        }

                echo($nine); // 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