From: "Kenn Murrah" <[EMAIL PROTECTED]>

> In code that I did not create (and do not entirely understand), an array 
> ($db) was created which, if displayed with print_r($db), shows the 
> following:
> 
> Array ( [0] => bc Object ( [fullname] => Kent Huffman [industry] => 
> Technology Solutions [url] => /tsi [address1] => 2300 W. Plano Parkway 
> [city] => Plano [state] => TX [zip] => 75075 [country] => USA [direct] 
> => +1 (972) 577 3890 [email] => [EMAIL PROTECTED] [orderID] => PSC5 
> [financialdeptID] => MARCO10 [quantity] => 250 [messagetoprinter] => 
> [shippingmethod] => FedEx Express Saver [ship2name] => Kent Huffman 
> [ship2address1] => 2300 W. Plano Parkway [ship2address2] => [ship2city] 
> => Plano [ship2state] => TX [ship2zip] => 75075 [ship2country] => USA 
> [ship2phone] => +1 (972) 577 3890 ) )

You have an array of objects. Try this:

echo $db[0]->fullname;

---John Holmes...

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

Reply via email to